LukeHan 의 잡다한 기술 블로그

apache2: Could not reliably determine the server's fully qualified domain name 본문

OS/HamoniKR

apache2: Could not reliably determine the server's fully qualified domain name

LukeHan1128 2024. 3. 13. 20:00
반응형

 

  • OS : Ubuntu 22.04.2 LTS

 

 

lukehan@lukehan:/etc/apache2/sites-available$ sudo service apache2 status
● apache2.service - The Apache HTTP Server
     Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)
     Active: active (running) since Fri 2024-03-08 17:11:50 KST; 5min ago
       Docs: https://httpd.apache.org/docs/2.4/
    Process: 3639120 ExecStart=/usr/sbin/apachectl start (code=exited, status=0/SUCCESS)
   Main PID: 3639125 (/usr/sbin/apach)
      Tasks: 56 (limit: 38012)
     Memory: 11.8M
        CPU: 45ms
     CGroup: /system.slice/apache2.service
             ├─3639125 /usr/sbin/apache2 -k start
             ├─3639126 /usr/sbin/apache2 -k start
             ├─3639127 /usr/sbin/apache2 -k start
             └─3639128 /usr/sbin/apache2 -k start

 3월 08 17:11:50 lukehan systemd[1]: Starting The Apache HTTP Server...
 3월 08 17:11:50 lukehan apachectl[3639124]: 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
 3월 08 17:11:50 lukehan systemd[1]: Started The Apache HTTP Server.

 

Apache2 재구동 시 위와 같은 메시지가 발생하였다.

 

특별한 이상 증상은 없으나 불필요한 메시지를 나오지 않도록 수정 진행 하였다.

 

 

 

 

lukehan@lukehan:~$ grep ServerName /etc/apache2/apache2.conf
lukehan@lukehan:~$

 

ServerName 이 설정되지 않은 것을 확인할 수 있다.

 

 

 

 

lukehan@lukehan:~$ ech "ServerName localhost" >> /etc/apache2/apache2.conf

lukehan@lukehan:~$ grep ServerName /etc/apache2/apache2.conf
ServerName localhost

 

위와 같이 추가된 것을 확인할 수 있다.

 

 

 

 

lukehan@lukehan:~$ sudo service apache2 restart

 

변경 설정이 반영되도록 Apache2 를 재구동 한다.

 

 

 

 

 

반응형
Comments