일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 주인님
- 고양이
- java program
- 리플렉션
- 에노테이션
- aws #ubuntu #root계정
- 생성자
- 모바일 앱
- Reflection
- Java
- 어노테이션
- 자바스크립트
- 어플리케이션
- class
- 어플
- 리액트 네이티브
- 객체
- Feild
- constructor
- React Native
- apache #start_warning #ServerName #ubuntu
- annotation
- 덕배
Archives
- Today
- Total
코딩하는 곰
[ubuntu 우분투] apache2: Could not reliably determine the server's fully qualified domain name 본문
Server
[ubuntu 우분투] apache2: Could not reliably determine the server's fully qualified domain name
코딩하는곰 2021. 12. 4. 19:04아파치 시작 시 에러 발생할 때가 있음
$ service apache2 start
* Starting web server apache2
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.3. Set the 'ServerName' directive globally to suppress this message
1. 아파치 설정(/etc/apache2/apache2.conf) 파일에 ServerName이 어떻게 설정 되어있는지 확인 합니다.
$ grep ServerName /etc/apache2/apache2.conf
$
2. grep 해봤으나 아무것도 나오지 않습니다. 설정해주도록 합시다.
vim으로 넣어줘도 상관 없고 어떤 방법으로던 설정파일에 ServerName을 넣어줍니다
$ echo "ServerName localhost" /etc/apache2/apache2.conf
3. 아파치 서비스를 재시작 합니다.
$ service apache2 restart
* Restarting web server apache2
Comments