我正在尝试从here
在ubuntu 12.04上安装phpmyadmin安装apache2后,运行以下命令
sudo /etc/init.d/apache2 restart
我得到了以下错误,无论如何如何解决此错误并在ubuntu上安装phpmyadmin
* Restarting web server apache2 apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs
Action 'start' failed.
The Apache error log may have more information.
当我在浏览器中尝试localhost/phpmyadmin
时显示Welcome to nginx!
答案 0 :(得分:1)
你有一个Nginx网络服务器可能在Apache尝试绑定的同一个端口上运行。 我不知道谁在使用这个Nginx网络服务器,但您可以通过以下方式停止它:
sudo service nginx stop
然后再次尝试启动Apache。
要查看谁在使用哪个端口:
sudo netstat -nptul
答案 1 :(得分:0)
您运行的nginx webserver会侦听端口80,因此Apache无法绑定到该端口。你必须首先使用像
这样的东西关闭nginxsudo /etc/init.d/nginx stop