Linux下安装Apache#
20150418
目录##
......什么是httpd
......安装步骤
......Apache的配置、启动与停止
0.什么是httpd##
httpd是Apache超文本传输协议(HTTP)服务器的主程序。被设计为一个独立运行的后台进程,它会建立一个处理请求的子进程或线程的池。一般,常用名词Apache指代httpd。
1.安装步骤##
1.1 APR(Apache Portable Runtime)###
在官网下载最新版本APR:http://archive.apache.org/dist/apr
tar -zxvf apr-1.5.1.tar
cd apr-1.5.1
./configure --prefix=/app/apache/apr
make
make install
make clean
1.2 APR-util###
在官网下载最新版本APR-util:http://archive.apache.org/dist/apr
tar -zxvf apr-util-1.5.4.tar
cd apr-util-1.5.4
./configure --prefix=/app/apache/apr-util --with-apr=/app/apache/apr/
make
make install
make clean
1.3 PCRE###
由于PCRE需要使用c++编译,所以需要确认Linux下已经安装有c++编译器。
在官网下载最新版本PCRE:http://jaist.dl.sourceforge.net/project/pcre/pcre/
tar -zxvf pcre-8.32.tar
cd pcre-8.32
./configure --prefix=/app/apache/pcre/
make
make install
make clean
1.4 HTTPD###
在官网下载最新版本Apache:http://httpd.apache.org/download.cgi
tar -zxvf httpd-2.4.12.tar.gz
cd httpd-2.4.12
#设置apache安装目录
./configure --prefix=/app/apache/httpd --with-apr=/app/apache/apr/ --with-apr-util=/app/apache/apr-util/ --with-pcre=/app/apache/pcre/
make
make install
make clean
2. Apache的配置、启动与停止
在httpd安装目录下conf/httpd.conf配置文件中,进行基本配置。
#使Apcche支持PHP
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .php5
<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>
#配置端口
listen 80
#配置主机名
ServerName localhost:80
#配置目录
DocumentRoot “/data/helowrd”
<Directory "/data/helowrd">
#使CGI支持perl、Python、shell
AddHandler cgi-script .cgi .pl .py .sh
LoadModule cgi_module /usr/lib/apache2/modules/mod_cgi.so
#配置目录options,增加ExecCGI,使支持CGI
<Directory /var/www/cgi-bin/>
Options Indexes FollowSymLinks MultiViews ExecCGI
AllowOverride None
Order allow,deny
allow from all
</Directory>
如果提示目录不存在则需配置SELinux配置目录权限:
chcon -h system_u:object_r:httpd_sys_content_t /data/helowrd
chcon -R -h root:object_r:httpd_sys_content_t /data/helowrd/*
chcon -R -h -t httpd_sys_content_t /data/helowrd
通过apachectl启动和停止httpd。
cd /app/apache/httpd/bin
#启动
./apachectl -k start
#如果不能启动,查下端口冲突之类的问题。
#端口路由:iptables -A PREROUTING -t nat -i eth1 -p tcp --dport 80 -j REDIRECT --to-port 8000
#关闭
./apachectl -k stop
welcom to my page ---> http://www.helowrd.net