서비스 상태 확인, 시작, 중지, 재시작 명령어이다.
CentOS (서비스명: httpd) | |||||
---|---|---|---|---|---|
우분투 (서비스명: apache2) | |||||
명령어 종류 | systemctl ★★ | service | /etc/init.d/ ★ | apachectl | httpd[1] |
아파치 상태 확인 | systemctl status apache2 | service apache2 status | /etc/init.d/apache2 status | · | · |
아파치 시작 | systemctl start apache2 | service apache2 start | /etc/init.d/apache2 start | · | · |
아파치 정지 | systemctl stop apache2 | service apache2 stop | /etc/init.d/apache2 stop | · | · |
아파치 재시작 | systemctl restart apache2 | service apache2 restart | /etc/init.d/apache2 restart | · | · |
아파치 리로드 | systemctl reload apache2 | service apache2 reload | /etc/init.d/apache2 reload | · | · |
아파치 상태 확인 | systemctl status httpd | service httpd status | /etc/init.d/httpd status | · | httpd -k status |
아파치 시작 | systemctl start httpd | service httpd start | /etc/init.d/httpd start | · | httpd -k start |
아파치 정지 | systemctl stop httpd | service httpd stop | /etc/init.d/httpd stop | · | httpd -k stop |
아파치 재시작 | systemctl restart httpd | service httpd restart | /etc/init.d/httpd restart | · | httpd -k restart |
아파치 리로드 | systemctl reload httpd | service httpd reload | /etc/init.d/httpd reload | · | httpd -k reload |
참조
https://zetawiki.com/wiki/%EC%95%84%ED%8C%8C%EC%B9%98_%EC%9B%B9%EC%84%9C%EB%B2%84