版本
CentOS
httpd-2.4.6.tar.gz
php-5.5.5.tar.gz
步骤:
1)
//可以直接进入第二步,安装时出现所需库未安装返回第一步
2)
3)
4)
5)
一:安装库
安装时可能出现一些软件包未安装
安装方法如下:
① yum
② tar
tar
cd
./configure
make
make
tar
cd
./configure
make
make
yum
tar
cd
./configure
make
make
二:安装apache
tar
cd
./configure
make
make
三:安装PHP
tar
cd
./configure
make
make
四:修改配置文件
Apache
配置文件在/usr/local/httpd/conf/httpd.conf
网页文件在/usr/local/httpd/htdocs/
php
cp
vi
确保以下字符串是否存在
LoadModule php5_module modules/libphp5.so
在<IfModule>…</IfModule>之间添加 AddType
在/usr/local/apache/htdocs/ 下创建以下php文件进行测试
<?php
phpinfo()
?>
五:配置为系统服务
# cp /usr/local/httpd/bin/apachectl /etc/rc.d/init.d/httpd
然后 vi /etc/rc.d/init.d/httpd 添加(# !/bin/sh下面)
# chkconfig: 2345 50 90
# description: Activates/Deactivates Apache Web Server
保存退出
最后,运行chkconfig把Apache添加到系统的启动服务组里面:
# chkconfig –add httpd
# chkconfig –level 2345 httpd on
然后再service httpd start