Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- oracle 18c
- 윈도우 Oracle
- ora-01722
- Oracle 사용자명 입력
- Orace 18c
- Oracle 윈도우 설치
- Oracle 테이블 띄어쓰기
- Oracle Express Edition
- ORA-00922
- Oracle 사용자명
- Oracle 18c 설치
- Oracle 초기 사용자
- 서평단
- 비전공자를 위한 데이터베이스 입문
- 오라클 캐릭터셋 변경
- 오라클 캐릭터셋 조회
- Oracle 테이블 대소문자
- ORA-12899
- Oracle 18c HR schema
- 무료 오라클 데이터베이스
- 무료 오라클 설치
- 오라클 캐릭터셋 확인
- oracle
- Oracle 18c HR
Archives
- Today
- Total
Nirsa's Learning Lab
[Apache 2.4] 아파치 httpd 에러 발생 (AH00558: httpd: Could not reliably determine the server's fu...sage) 본문
APP & Server/Apache
[Apache 2.4] 아파치 httpd 에러 발생 (AH00558: httpd: Could not reliably determine the server's fu...sage)
Nirsa 2020. 4. 28. 22:23반응형
-
Apache httpd 에러 발생 (AH00558: httpd: Could not reliably determine the server's fu...sage)
해당 에러는 설치 후 서비스 start 할 때 자주 발생 합니다. httpd.conf 파일에서 ServerName을 설정해주면 간단히 해결이 가능 합니다.
vi /etc/httpd/conf/httpd.conf
# ServerName 단어 검색
/ServerName
# 아래 내용 삽입
ServerName=localhost
:wq
systemctl start httpd
반응형