LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   cant get the phpmyadmin login screen on fedora 13 (https://www.linuxquestions.org/questions/linux-newbie-8/cant-get-the-phpmyadmin-login-screen-on-fedora-13-a-828436/)

java 08-25-2010 01:14 PM

cant get the phpmyadmin login screen on fedora 13
 
Hi guys,
i cant get the phpmyadmin login screen on my fedora 13 using http://localhost/phpmyadmin/
i get:
Unable to connect
Firefox can't establish a connection to the server at localhost.

The content of my of my /etc/hosts is:
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6

Thanks for the anticipated assistances.
Yomi

bathory 08-25-2010 03:54 PM

Check if there is a webserver running and listening on port 80
Code:

netstat -tanpl|grep 80
Regards

java 08-26-2010 09:41 AM

Quote:

Originally Posted by bathory (Post 4077635)
Check if there is a webserver running and listening on port 80
Code:

netstat -tanpl|grep 80
Regards


Hi bathory,

This is the output of netstat -tanpl | grep 80 :

tcp 0 1 192.168.15.109:55107 208.69.56.165:80 SYN_SENT 2936/totem-plugin-v
tcp 0 0 192.168.15.109:55163 69.63.176.162:80 ESTABLISHED 2509/firefox
tcp 0 0 192.168.15.109:40552 70.85.33.178:80 ESTABLISHED 2678/opera
tcp 0 0 192.168.15.109:34586 70.85.33.178:80 ESTABLISHED 2509/firefox
tcp 0 0 ::ffff:127.0.0.1:8005 :::* LISTEN 1549/java
tcp 0 0 :::8009 :::* LISTEN 1549/java
tcp 0 0 :::8080 :::* LISTEN 1549/java

Thanks and hope to hear from you.

bathory 08-26-2010 11:55 AM

So, apache is not running, or it's configured to run on a different port.
You can run
Code:

ps -ef|grep httpd
to see if it's running.
To start it you can run
Code:

service httpd start
If it fails check the error_log in /var/log/httpd

java 08-27-2010 11:03 AM

Quote:

Originally Posted by bathory (Post 4078664)
So, apache is not running, or it's configured to run on a different port.
You can run
Code:

ps -ef|grep httpd
to see if it's running.
To start it you can run
Code:

service httpd start
If it fails check the error_log in /var/log/httpd

Got it working now. THanks


All times are GMT -5. The time now is 05:26 AM.