일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- postgres
- 3.0
- ubuntu
- node
- 설정
- PostgreSQL
- Windows
- 우분투
- 리눅스
- DB
- script
- java
- 설치
- 스크립트
- 하모니카
- hamonikr
- Linux
- 파이썬
- 자바스크립트
- 아틀라시안
- JS
- 데이터베이스
- javascript
- python
- install
- 자바
- 윈도우
- Atlassian
- 노드
- DATABASE
Archives
- Today
- Total
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