Infra Structure/WAS

[Apache] 아파치 실행

하 선생 2021. 8. 29. 15:03

 - 버전확인
 # httpd -v
   2.4

 

 # 설정파일
   /etc/httpd/conf/httpd.conf
   
 # 루트디렉토리 (DocumentRoot)
   /var/www/html
 
 - Apache 상태확인
 # systemctl status httpd
 # service httpd status
 
 - Apache 시작
 # systemctl start httpd
 # service httpd start
 # apachectl start
 
 - Apache 중지
 # systemctl stop httpd
 # service httpd stop
 # apachectl stop
 
 - Apache 재시작
 # systemctl restart httpd
 # service httpd restart
 # apachectl restart