为了账号安全,请及时绑定邮箱和手机立即绑定

CentOS 6.x下源码编译安装LAMP环境搭建(下) 之 LAMP架构搭建(1)

标签:
PHP MySQL Linux
慕课网的小伙伴们!本手记将承接上一篇《CentOS 6.x下源码编译安装LAMP环境搭建(上) 之 辅助软件的安装》 http://www.imooc.com/article/18107 如果你未完成在上一篇手记的辅助软件的安装请移至 http://www.imooc.com/article/18107 这是必须的 如果想要成功安装lamp环境的搭建一定要安装辅助软件 相关源码包也在上一篇手记中 本节将详细讲解Apache的源码编译安装:)
安装apache

cd /usr/local/LAMP
卸载apr和apr-util
[root@centos6 LAMP]# yum remove apr apr-util

yum安装openssl
[root@centos6 LAMP]#yum install openssl-devel

解压缩apr和apr-util和httpd-2.4.7.tar.gz
[root@centos6 LAMP]#tar -zxvf apr-1.4.6.tar.gz
[root@centos6 LAMP]#tar -zxvf apr-util-1.4.1.tar.gz
[root@centos6 LAMP]#tar -zxvf httpd-2.4.7.tar.gz

[root@centos6 LAMP]#cp -r apr-1.4.6 httpd-2.4.7/srclib/apr
[root@centos6 LAMP]#cp -r apr-util-1.4.1 httpd-2.4.7/srclib/apr-util

解压 apr 和 apr-util ,复制并取消版本号

安装pcre-8.34
[root@centos6 LAMP]# tar zxvf pcre-8.34.tar.gz
[root@centos6 LAMP]# cd pcre-8.34
[root@centos6 pcre-8.34]# ./configure --prefix=/usr/local/pcre
[root@centos6 pcre-8.34]# make
[root@centos6 pcre-8.34]# make install
cd /usr/local/LAMP/httpd-2.4.7
[root@centos6 httpd-2.4.7]#./configure --prefix=/usr/local/apache2 --sysconfdir=/usr/local/apache2/etc/ --enable-mods-shared=all --enable-deflate --enable-speling--enable-cache --enable-file-cache --enable-disk-cache --enable-mem-cache --enable-so --enable-expires=shared --enable-rewrite=shared --enable-static-support --with-z=/usr/local/zlib/ --with-included-apr --with-pcre=/usr/local/pcre/ --disable-userdir

[root@centos6 httpd-2.4.7]# make && make install

启动Apache服务器,并查端口是否开启,启动Apache服务器的命令行如下:

[root@centos6 httpd-2.4.7]# /usr/local/apache2/bin/apachectl start

如果不能启动,提示信息:

AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using ::1. Set the 'ServerName' directive globally to suppress this message
解决方案:

[root@centos6 httpd-2.4.7]# vim /etc/apache2/httpd.conf
写入:

ServerName localhost:80

重启apache
/usr/local/apache/bin/apachectl stop
/usr/local/apache/bin/apachectl start

查看端口号,应该是这样的:

[root@centos6 httpd-2.4.7]#netstat -tulnp | grep 80

tcp 0 0 0.0.0.0:80 0.0.0.0:* LIST

测试:浏览器输入你的IP地址,出现 It works! 安装成功

写入/etc/rc.local配置文件中 使得Apache每次开机自启动:

vim /etc/rc.local

添加:

/usr/local/apache/bin/apachectl start

:wq保存退出
*若启动时提示 /usr/local/apache2/modules/mod_deflate.so 无权限,可关闭 SELinux
或者执行命令 chcon-ttexrel_shlib_t/usr/local/apache2/modules/mod_deflate.so ,
类似此类 .so 文件不能载入或没有权限的问题,都是 SELinux 问题,使用命令:“ chcon-t
texrel_shlib_t 文件名”即可解决, MySQL 和 Apache 也可能有类似问题。

最后只有你通过浏览器
输入地址访问: http://Apache 服务器地址,若显示“ Itworks ”即表明 Apache 正常工作!!!

点击查看更多内容
3人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
Linux系统工程师
手记
粉丝
58
获赞与收藏
516

关注作者,订阅最新文章

阅读免费教程

感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消