본문 바로가기
WEB/APACHE

3. apache 기동/중지 및 상태 확인

by coldplayer83 2022. 10. 26.
728x90

1. 아파치 시작

./systemctl start httpd
./service httpd start
./apachectl start
 
2. 아파치 중지
./systemctl stop httpd
./service httpd stop
./apachectl stop
 
3. 아파치 재시작
./systemctl restart httpd
./service httpd restart
./apachectl restart
 
4. 아파치 상태 확인
./systemctl status httpd
./service httpd status
./httpd -t
 
5. 아파치 버전 확인
./httpd -V
./apachectl -V
 
6. 프로세스 마지막 기동 시간 확인
ps -eo pid,lstart,cmd | grep httpd | grep -v grep

 

'WEB > APACHE' 카테고리의 다른 글

4. 1024 이하 포트 사용 설정  (0) 2023.05.22
2.1. Compile 설치 과정  (0) 2023.05.22
2. 설치 [Compile]  (0) 2023.05.22
1. 설치 [YUM]  (0) 2023.05.22
5. Apache - Jboss(Wildfly) 연동(mod_jk)  (0) 2022.10.28