"아파치 웹서버"의 두 판 사이의 차이

33번째 줄: 33번째 줄:
service httpd restart
service httpd restart
</source>
</source>
:→ service 명령어는 /etc/init.d/httpd 스크립트를 이용


다음과 같이 명령을 내릴 수도 있다. 효과는 동일
다음과 같이 명령을 내릴 수도 있다. 효과는 동일
41번째 줄: 42번째 줄:
httpd -k restart
httpd -k restart
</source>
</source>
:→ httpd는 /usr/sbin 에 있음


<source lang='bash'>
<source lang='bash'>
46번째 줄: 48번째 줄:
apachectl stop
apachectl stop
</source>
</source>
:→ apachectl도 /usr/sbin 에 있음


==같이 보기==
==같이 보기==

2012년 9월 9일 (일) 12:45 판

아파치 시작, 중지, 재시작
httpd

1 httpd 설치

2 설치 위치

[root@jmnote ~]# service httpd status
httpd is stopped
[root@jmnote ~]# which httpd
/usr/sbin/httpd
→ httpd 파일은 /usr/sbin에 있다.
[root@jmnote ~]# /usr/sbin/httpd -v
Server version: Apache/2.2.3
Server built:   Aug 19 2011 11:19:08

3 기본 명령어

서비스 상태 확인, 시작, 중지, 재시작 명령어이다.

service httpd status
service httpd start
service httpd stop
service httpd restart
→ service 명령어는 /etc/init.d/httpd 스크립트를 이용

다음과 같이 명령을 내릴 수도 있다. 효과는 동일

httpd -k status
httpd -k start
httpd -k stop
httpd -k restart
→ httpd는 /usr/sbin 에 있음
apachectl start
apachectl stop
→ apachectl도 /usr/sbin 에 있음

4 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}