我已经Apache2, mysql, php5 and phpmyadmin
在Ubuntu 14.04上安装了,但后来错误地安装了nginx。
现在我的本地主机页面向我显示“ 欢迎使用nginx服务器”。和localhost/phpmyadmin
链接不起作用。
如何找回LAMP服务器?
我使用命令删除了ngnix
sudo apt-get remove nginx
sudo apt-get purge nginx
安装Apache
sudo apache2ctl restart
但在重新启动apache2结束时,出现此错误
sudo apache2ctl restart
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
httpd not running, trying to start
(98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
(98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
AH00015: Unable to open logs
Action 'restart' failed.
是的,我相信是这样
—
user284303
我将在此处添加一些注意事项。
—
托马斯·沃德
/var/www/
并/var/www/html
往往是Web服务器的“默认”文档根目录;如果NGINX是在Apache之前安装的,则完全有可能由Web服务器安装的“默认索引页”仍然存在,并且在安装Apache或NGINX时,系统不会覆盖该默认索引页(以防用户实际上在那里有一个自定义页面) 。这可能就是为什么显示“ nginx”登录页面而不是Apache的原因,因此您应始终检查以确保不存在index.html或存在您编写的自定义页面。
apt-get
?