Apache2, mysql, php5 and phpmyadmin
우분투 14.04에 설치 했지만 나중에 실수로 nginx를 설치합니다.
이제 내 localhost 페이지에 Welcome to nginx server가 표시 됩니다. 그리고 localhost/phpmyadmin
링크가 작동하지 않습니다.
LAMP 서버를 어떻게 다시받을 수 있습니까?
명령을 사용하여 ngnix를 제거했습니다.
sudo apt-get remove nginx
sudo apt-get purge nginx
아파치 설치
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.
/var/www/
및 /var/www/html
웹 서버에 대한 '기본'docroot를하는 경향이; Apache 전에 NGINX를 설치 한 경우 웹 서버에서 설치 한 '기본 색인 페이지'가 여전히 존재할 수 있으며 시스템은 Apache 또는 NGINX를 설치할 때이를 덮어 쓰지 않습니다 (사용자가 실제로 사용자 정의 페이지가있는 경우) . 그렇기 때문에 Apache 대신 'nginx'랜딩 페이지가 표시되는 것이므로 index.html이 없거나 작성한 사용자 정의 페이지가 없는지 항상 확인해야합니다.
apt-get
?