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

1번째 줄: 1번째 줄:
{{소문자}}
{{소문자}}
{{테스트|CentOS 5.7}}
*아파치 웹서버 [[데몬]]
*아파치 웹서버 [[데몬]]
*설정 파일은 [[/etc/httpd/conf/httpd.conf]]
*설정 파일은 [[/etc/httpd/conf/httpd.conf]]
==설치 확인==
<code>yum info httpd</code>를 실행하여 설치되었는지 확인한다.
<source lang='dos'>
[root@localhost share]# yum info httpd
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: www.ftp.ne.jp
* extras: www.ftp.ne.jp
* updates: www.ftp.ne.jp
Installed Packages
Name      : httpd
Arch      : x86_64
Version    : 2.2.3
Release    : 53.el5.centos
Size      : 3.3 M
Repo      : installed
Summary    : Apache HTTP Server
URL        : http://httpd.apache.org/
License    : Apache Software License
Description: The Apache HTTP Server is a powerful, efficient, and extensible
          : web server.
Available Packages
Name      : httpd
Arch      : x86_64
Version    : 2.2.3
Release    : 53.el5.centos.3
Size      : 1.2 M
Repo      : updates
Summary    : Apache HTTP Server
URL        : http://httpd.apache.org/
License    : Apache Software License
Description: The Apache HTTP Server is a powerful, efficient, and extensible
          : web server.
</source>
*httpd 2.2.3 릴리즈 53.el5.centos가 설치되어 있다. 원한다면 릴리즈 53.el5.centos.3으로 업데이트할 수 있다.


==설치 위치==
==설치 위치==

2012년 2월 19일 (일) 15:09 판

1 설치 확인

yum info httpd를 실행하여 설치되었는지 확인한다.

[root@localhost share]# yum info httpd 
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: www.ftp.ne.jp
 * extras: www.ftp.ne.jp
 * updates: www.ftp.ne.jp
Installed Packages
Name       : httpd
Arch       : x86_64
Version    : 2.2.3
Release    : 53.el5.centos
Size       : 3.3 M
Repo       : installed
Summary    : Apache HTTP Server
URL        : http://httpd.apache.org/
License    : Apache Software License
Description: The Apache HTTP Server is a powerful, efficient, and extensible
           : web server.

Available Packages
Name       : httpd
Arch       : x86_64
Version    : 2.2.3
Release    : 53.el5.centos.3
Size       : 1.2 M
Repo       : updates
Summary    : Apache HTTP Server
URL        : http://httpd.apache.org/
License    : Apache Software License
Description: The Apache HTTP Server is a powerful, efficient, and extensible
           : web server.
  • httpd 2.2.3 릴리즈 53.el5.centos가 설치되어 있다. 원한다면 릴리즈 53.el5.centos.3으로 업데이트할 수 있다.

2 설치 위치

CentOS release 5.7 (Final)를 설치하였더니 아파치가 이미 설치되어 있다.

[root@localhost ~]# service httpd status
httpd is stopped
[root@localhost ~]# whereis httpd
httpd: /usr/sbin/httpd.worker /usr/sbin/httpd.event /usr/sbin/httpd /etc/httpd /usr/share/man/man8/httpd.8.gz
[root@localhost ~]# /etc/httpd -v
bash: /etc/httpd: is a directory
[root@localhost ~]# /usr/sbin/httpd -v
Server version: Apache/2.2.3
Server built:   Aug 19 2011 11:19:08
  • httpd 파일은 /usr/sbin에 있다.

3 기본 명령어

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

service httpd status
service httpd start
service httpd stop
service httpd restart

다음과 같이 데몬에 직접 시작, 중지, 재시작 명령을 내릴 수도 있다.

httpd -k start
httpd -k stop
httpd -k restart

4 같이 보기

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