私がインストールされているApache2, mysql, php5 and phpmyadmin
私のUbuntu 14.04ではなく、後に誤っに私はnginxのインストール。
ここで私のlocalhostページに「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.
/var/www/
そして、/var/www/html
Webサーバのための「デフォルト」ドキュメントルートになりがち。NGINXがApacheの前にインストールされた場合、Webサーバーによってインストールされた「デフォルトのインデックスページ」がまだ存在している可能性があり、システムはApacheまたはNGINXのインストール時にそれを上書きしません(ユーザーが実際にカスタムページを持っている場合) 。Apacheの代わりに 'nginx'ランディングページが表示されたのはそのためかもしれません。そのため、index.htmlが存在しないか、作成したカスタムのものが存在することを常に確認する必要があります。
apt-get
?