2
I'm trying to install LAMP on a server and I'm doing this remotely.
These are what I did so far:
1) ssh admin@address.net [Ubuntu 12.10 server]
2) sudo apt-get install lamp-server^
The installation seems successful, but I CAN'T access http://address.net/
I'm sure apache2 is running.
Also, I've checked the /var/www/ folder and there, exists an index.html file.
So I'm expecting a "It works!" page at least upon accessing http://address.net/ on my browser.
Did I miss to configure something?
Thanks so much.
Be more specific on "can't access". What does your browser say? e.g. Connection refused, Connection timed out, Connection reset. What do Apache logs say? Any firewall running (check
iptables -L -n -v
). – gertvdijk – 2012-12-20T09:40:38.250Thanks for the response. The error I'm getting is: Oops! Google Chrome could not connect to address.net. ALSO I've checked the apache2 access.log and it's EMPTY. Maybe a firewall is blocking the connection to the apache server? – Mae B – 2012-12-20T12:41:13.310
1Resolved this. It's a firewall issue. Just enabled port 80 on firewall. Thanks again! – Mae B – 2012-12-20T15:29:04.927