Can't connect to pwAdmin/iWeb
I've recently upgraded my internet, so I had to switch my modem and connection, but after I did that vbox won't let me connect to pwadmin/iweb anymore, both pages get stuck loading forever. Can anyone please tell me what I have to change to make it work? I'm guessing it's something to do with port 8080 cause adminer and the webserver work fine. (Tried opening it in windows firewall but it didn't change anything)
Re: Can't connect to pwAdmin/iWeb
Does Tomcat is loaded? If not, check your Java configuration.
Otherwise use this script for starting your Tomcat server,
tomcat_start.sh
Code:
echo ""
echo "=== APACHE TOMCAT ==="
export JAVA_HOME=/usr/java/jdk1.5.0_05/jre
apache-tomcat-5.5.28/bin/startup.sh
sleep 5
echo "=== DONE! ==="
echo ""
You must "cd" in the /usr/local/ folder of your linux server before starting this script.
Take care about your java version. Im my case i'm using jdk1.5.0_05.
The java version provided on the documantation page of pwAdmin project is jdk1.5.0_21 (if i remember exactly)
Re: Can't connect to pwAdmin/iWeb
Nah I doubt it's a java problem, I was able to access pwadmin and iweb before I switched my internet. Now I've got a new problem lol, I can't connect to vbox at all anymore. My IP has changed from static to dynamic after the upgrade, could it have something to do with that?
Re: Can't connect to pwAdmin/iWeb
What is your network configuration?
Gateway IP, your computer IP...
Does your Vbox is bridged on your computer network interface?
Little sample for a Vbox network config:
/etc/network/interfaces
Code:
address 192.168.1.50
netmask 255.255.255.0
gateway 192.168.1.1
network 192.168.1.0
broadcast 192.168.1.255
Commonly the gateway IP is 192.168.1.1 ...
Re: Can't connect to pwAdmin/iWeb
Re: Can't connect to pwAdmin/iWeb
Tried all of that, still doesn't work. :(
The strange thing is, before I got this new connection I was hosting my server with a host-only connection and people were able to connect fine. But now vbox can't connect to the internet no matter what type of connection I choose.
Never mind, it fixed itself magically. -_-
Hate it when these things happen, especially when they get fixed AFTER I try everything that's possible.