0

我正在尝试从这里在 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!

4

2 回答 2

1

您有一个 Nginx 网络服务器运行在可能与 Apache 尝试绑定的相同端口上。我不知道谁在使用这个 Nginx 网络服务器,但你可以通过以下方式阻止它:

sudo service nginx stop

然后尝试再次启动 Apache。

查看谁在使用哪些端口:

sudo netstat -nptul
于 2013-08-07T13:02:17.823 回答
0

您有一个正在运行的 nginx 网络服务器,它监听端口 80,因此 Apache 无法绑定到该端口。您必须先使用类似的方法关闭 nginx

sudo /etc/init.d/nginx stop
于 2013-08-07T13:01:32.853 回答