博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS 6.5 apache源码安装2.0版
阅读量:6148 次
发布时间:2019-06-21

本文共 1348 字,大约阅读时间需要 4 分钟。

yum install -y pcre-devel zlib-devel(可能需要安装gcc)

tar xf apr-1.5.2.tar.bz2

cd apr-1.5.2

./configure --prefix=/usr/local/apr

make

make install

cd ..

tar xf apr-util-1.5.4.tar.bz2 

cd apr-util-1.5.4

./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/

make

make install

groupadd www

useradd -g www -s /sbin/nologin -M www

 

yum install -y openssl openssl-devel(ssl需要安装)

cd ..

tar xf httpd-2.4.20.tar.bz2

cd httpd-2.4.20

./configure --prefix=/usr/local/apache --sysconfdir=/usr/local/apache/conf/ --enable-so --enable-ssl --enable-cgi --enable-expires --enable-deflate --enable-rewrite --with-zlib --with-pcre --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --enable-modeles=most --enable-mpms-shared=all --with-mpm=event | tee /root/apache    --enable-ssl=shared --with-ssl=/usr/local/openssl(ssl需要安装)

make

make install

cp /usr/local/apache/bin/apachectl /etc/rc.d/init.d/httpd

chmod +x /etc/rc.d/init.d/httpd

vim /etc/rc.d/init.d/httpd

#chkconfig: 2345 10 90

#description: Activates/Deactivates Apache Web Server

chkconfig --add httpd

chkconfig --level 35 httpd on

vim /usr/local/apache/conf/httpd.conf

ServerName localhost:80

vim /etc/profile.d/httpd.sh

export PATH=/usr/local/apache/bin:$PATH

. /etc/profile.d/httpd.sh

httpd -t

service httpd strat

本文转自 meteor_hy 51CTO博客,原文链接:http://blog.51cto.com/zuoshou/1956521,如需转载请自行联系原作者
你可能感兴趣的文章
C++ | class size
查看>>
c#多线程操作Windows Forms控件
查看>>
java并发包分析之———AQS框架
查看>>
golang时间
查看>>
关于HEXO安装失败的解决方法
查看>>
mi家前端面经
查看>>
前端工程化的理解
查看>>
js new Date()的兼容性问题
查看>>
判断用户名是否正确
查看>>
当前触发事件的两种方式(onclick) 和 ('id') 获取
查看>>
iOS 利用UIWebView与JavaScript交互的最简单办法(本人已验证可行)
查看>>
aspnetpager调用存储过程方法
查看>>
如何优化代码中大量的if/else,switch/case?
查看>>
【轻松一刻】Java制作字符动画
查看>>
解决iOS10的Safari下Meta设置user-scalable=no无效的方法
查看>>
js-利用插件qrcode.min.js,前端实时生成二维码
查看>>
vue 表单提交
查看>>
行业动态
查看>>
简易相应式布局。
查看>>
用js使得输入框input只能输入数字
查看>>