'아파치 중지'에 해당하는 글 1건

아파치(apache) 시작,중지,리스타트하기

아파치 시작,중지,리스타트는 httpd 또는 apachectl 을 사용합니다.
apachectl 은 httpd와 같은 역할입니다. 아니 좀 정확히 말하면 httpd를 콘트롤 해주는 역할을 가진 녀석으로
httpd 처럼 사용해 주면 됩니다.


아파치 시작
# apachectl start
# httpd start


아파치 중지
# apachectl stop
# httpd stop

아파치 리스타트
# apachectl restart
# httpd restart


위와 같이 했는데 안될경우

아파치 시작
# /etc/rc.d/init.d/httpd start

아파치 중지
# /etc/rc.d/init.d/httpd stop

아파치 리스타트
# /etc/rc.d/init.d/httpd restart


다 아시겠지만 덧붙여서 apachectl 또는 httpd 의 위치는 말그대로 which 명령어를 씁니다.

# which apachectl

결과물 
/usr/local/apache/bin/apachectl 


httpd.conf 파일의 문법검사는
# apachectl configtest

이상 없을때의 결과물
Syntax OK


WRITTEN BY
rabbbit
필기

,