터미널에 코드를 작성했습니다.
sudo service apache2 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
이 오류는 무엇입니까?
답변1
이 메시지가 나타나지 않게 하려면 파일에 다음 줄을 추가하여 localhost에서 서비스를 제공하겠다고 알려야 합니다 /etc/apache2/apache2.conf
.
sudo gedit /etc/apache2/apache2.conf
그런 다음 줄을 추가하십시오.
ServerName localhost
저장하고 종료한 후 다시 시작해 보세요.
sudo service apache2 restart