티스토리 뷰

[Linux - Apache] 아파치 서버 시작, 종료, 재기동 방법(Centos 6,7 버전별 방법)

 

 

아파치 재기동시 아래 내용 참고하여 기동

 

 

 

1.systemctl 사용(CentOS 7 이상)

Apache 서버를 재시작
sudo systemctl restart httpd


Apache 서버 시작
sudo systemctl start httpd


Apache 서버 중지
sudo systemctl stop httpd


Apache 서버 상태 확인
sudo systemctl status httpd


Apache 서버 재로드 (설정 파일만 적용)
sudo systemctl reload httpd


부팅 시 Apache 서버 자동 시작 설정

sudo systemctl enable httpd

 


2. service 사용 (CentOS 6 이하)


Apache 서버 재시작
sudo service httpd restart


Apache 서버 시작
sudo service httpd start


Apache 서버 중지
sudo service httpd stop


Apache 서버 상태 확인
sudo service httpd status


Apache 서버 재로드
sudo service httpd reload

 

 


3. 직접 apachectl 명령어 사용


Apache 서버를 재시작
sudo apachectl restart


Apache 서버 시작
sudo apachectl start


Apache 서버 중지
sudo apachectl stop


Apache 서버 재로드
sudo apachectl graceful

댓글