标签:lease work apr configure min 关系 gcc 遇到 determine
64位CentOS Linux release 7.2.1511 (Core)
1.apr和apr-util,下载地址: http://apr.apache.org/download.cgi
2.pcre,下载地址:http://www.pcre.org
3.apache,下载地址:http://httpd.apache.org/download.cgi
4.说明
安装apache,依赖三个软件:apr,apr-util,pcre。所以这三个软件在安装apache前必须要安装好。
[root@localhost ~]# mkdir /soft
利用WinSCP将下载好的四个tar包拷贝到centos的/soft目录
安装apache依赖apr,apr-util,pcre三个软件,而安装这三个软件的话,它们也依赖其它的小软件,所以这个时候我们还得先安装其它的小软件。
[root@localhost ~]# yum -y install gcc gcc-c++ libtool expat-devel
[root@localhost ~]# cd /soft
[root@localhost soft]# tar -zxvf apr-1.6.3.tar.gz
[root@localhost soft]# tar -zxvf apr-util-1.6.1.tar.gz
[root@localhost soft]# tar -zxvf pcre-8.41.tar.gz
[root@localhost soft]# tar -zxvf httpd-2.4.29.tar.gz
[root@localhost soft]# cd apr-1.6.3/
[root@localhost apr-1.6.3]# ./configure --prefix=/usr/local/apr
在编译的过程中遇到如下错误:
rm: cannot remove ‘libtoolT‘: No such file or directory
不要惊慌,打开/soft/apr-1.6.3/configure这个文件,把 $RM “$cfgfile” 那行删除掉。
然后再重新编译。
[root@localhost apr-1.6.3]# make && make install
[root@localhost apr-1.6.3]# cd /soft/apr-util-1.6.1/
[root@localhost apr-util-1.6.1]# ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
[root@localhost apr-util-1.6.1]# make && make install
--with表示依赖关系
[root@localhost apr-util-1.6.1]# cd /soft/pcre-8.41/
[root@localhost pcre-8.41]# ./configure --prefix=/usr/local/pcre
[root@localhost pcre-8.41]# make && make install
[root@localhost pcre-8.41]# cd /soft/httpd-2.4.29/
[root@localhost httpd-2.4.29]# ./configure --prefix=/usr/local/apache --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-pcre=/usr/local/pcre
[root@localhost httpd-2.4.29]# make && make install
开启端口
firewall-cmd --zone=public --add-port=80/tcp --permanent
重启防火墙
firewall-cmd --reload
1.启动前需要先取消注释httpd.conf中的ServerName。
打开/usr/local/apache/conf/httpd.conf,找到# ServerName www.example.com:80这一行,把#号删掉。
2.启动apache。
[root@localhost conf]# /usr/local/apache/bin/apachectl start
在浏览器地址栏输入:http://192.168.1.90/,会显示:It works!
http://www.cnblogs.com/carlo-jie/p/6103276.html
http://www.jianshu.com/p/949350cae1c8
http://blog.csdn.net/lyp256/article/details/55090282
大部分都是参考第一个链接
******************************************************************************
如果遇到以下错误,则表示需要安装expat-devel。
xml/apr_xml.c:35:19: 致命错误:expat.h:没有那个文件或目录 #include <expat.h>
原因:缺少expat-devel包,安装该包即可:yum install expat-devel
参考网址:http://www.mamicode.com/info-detail-1950100.html
******************************************************************************
解决httpd: Could not reliably determine the server‘s fully qualified domain name
用记事本打开 httpd.conf
将里面的 #ServerName localhost:80 注释去掉即可。
再重新启动apache即可
参考网址:
http://www.cnblogs.com/52linux/archive/2012/03/24/2415637.html
http://www.cnblogs.com/jkko123/p/6294679.html
******************************************************************************
安装apr报错rm: cannot remove `libtoolT‘: No such file or
直接打开/usr/local/src/apr-1.4.6/configure 把 $RM “$cfgfile” 那行删除掉
$RM “$cfgfile” 大约在 42302 行
然后再重新运行 ./configure --prefix=/usr/local/apr 就可以了
参考地址:http://blog.sina.com.cn/s/blog_6294abe70101b51z.html
标签:lease work apr configure min 关系 gcc 遇到 determine
原文地址:http://www.cnblogs.com/subendong/p/7746999.html