10-22-2020, 02:44 PM
(This post was last modified: 10-22-2020, 02:44 PM by remkonoteboom.)
I think I see what the problem is. The message you are seeing:
WebConsole: http://localhost:9090
is not something we did. It "came" with the OS. I never really noticed it before because I never look at the console on VMWare. I ssh directly into to it through some external means (ie: putty). I guess this is some web console that came with the OS (Fedora 31) and that is what is dumped by default.
From your browser, localhost is the windows OS, not the VMWare IP. You need the IP address of your VM. In the VM Console, type in:
# ifconfig
It will output something like:
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.115.129 netmask 255.255.255.0 broadcast 192.168.115.255
inet6 fe80::af1:795e:a079:6c31 prefixlen 64 scopeid 0x20<link>
ether 00:0c:29:b9:8b:be txqueuelen 1000 (Ethernet)
RX packets 2389935 bytes 1817094469 (1.6 GiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 2168325 bytes 1712384491 (1.5 GiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 3708413 bytes 3002810754 (2.7 GiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 3708413 bytes 3002810754 (2.7 GiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
It's a bit mess, but in my case the IP is "192.168.115.129". So this is the address you would put in the browser:
http://192.168.115.129/
where TACTIC is running on the default port 80.
You would replace it with whatever IP address your VM is assigned.
WebConsole: http://localhost:9090
is not something we did. It "came" with the OS. I never really noticed it before because I never look at the console on VMWare. I ssh directly into to it through some external means (ie: putty). I guess this is some web console that came with the OS (Fedora 31) and that is what is dumped by default.
From your browser, localhost is the windows OS, not the VMWare IP. You need the IP address of your VM. In the VM Console, type in:
# ifconfig
It will output something like:
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.115.129 netmask 255.255.255.0 broadcast 192.168.115.255
inet6 fe80::af1:795e:a079:6c31 prefixlen 64 scopeid 0x20<link>
ether 00:0c:29:b9:8b:be txqueuelen 1000 (Ethernet)
RX packets 2389935 bytes 1817094469 (1.6 GiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 2168325 bytes 1712384491 (1.5 GiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 3708413 bytes 3002810754 (2.7 GiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 3708413 bytes 3002810754 (2.7 GiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
It's a bit mess, but in my case the IP is "192.168.115.129". So this is the address you would put in the browser:
http://192.168.115.129/
where TACTIC is running on the default port 80.
You would replace it with whatever IP address your VM is assigned.