Pesan Error yang muncul jika kita memasukan perintah untuk merestart service apache pada ubuntu 14.04 LTS/Linux Mint 17.x
* Restarting web server apache2
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
[ OK ]
Cara Mengatasi Error Tersebut dengan langkah-langkah sebagai berikut :
1. Buka terminal
2. masukan Perintah
$echo "ServerName localhost" | sudo tee /etc/apache2/conf-available/fqdn.conf && sudo a2enconf fqdn
perintah diatas digunakan untuk membuat file /etc/apache2/conf-available/fqdn.conf dan mengisi ServerName anda ke localhost kemudian mengaktifkan konfigurasi yang anda buat ke service apache2
3. Kemudian reload dan restart service apache2 anda dengan perintah
#service apache2 reload && service apache2 restart
Sumber : https://help.ubuntu.com/community/ApacheMySQLPHP
* Restarting web server apache2
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
[ OK ]
Cara Mengatasi Error Tersebut dengan langkah-langkah sebagai berikut :
1. Buka terminal
2. masukan Perintah
$echo "ServerName localhost" | sudo tee /etc/apache2/conf-available/fqdn.conf && sudo a2enconf fqdn
perintah diatas digunakan untuk membuat file /etc/apache2/conf-available/fqdn.conf dan mengisi ServerName anda ke localhost kemudian mengaktifkan konfigurasi yang anda buat ke service apache2
3. Kemudian reload dan restart service apache2 anda dengan perintah
#service apache2 reload && service apache2 restart
Sumber : https://help.ubuntu.com/community/ApacheMySQLPHP