王高利:Linux__apache,安装,报错解决

今日编译apache时出错:

#./configure --prefix……检查编辑环境时出现:

checking for APR... no
configure: error: APR not found .  Please read the documentation

解决办法:

1.下载所需软件包:

wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz 
wget http://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz
wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.10/pcre-8.10.zip

2.编译安装:

a:解决apr not found问题>>>>>>

[[email protected] test]# tar -zxf apr-1.4.5.tar.gz
[[email protected] test]# cd  apr-1.4.5
[[email protected] apr-1.4.5]# ./configure --prefix=/usr/local/apr
[[email protected] apr-1.4.5]# make && make install

b:解决APR-util not found问题>>>>

[[email protected] test]# tar -zxf apr-util-1.3.12.tar.gz
[[email protected] test]# cd apr-util-1.3.12
[[email protected] apr-util-1.3.12]# ./configure --prefix=/usr/local/apr-util -with-apr=/usr/local/apr/bin/apr-1-config
[[email protected] apr-util-1.3.12]# make && make install

c:解决pcre问题>>>>>>>>>

[[email protected] test]#unzip -o pcre-8.10.zip
[[email protected] test]#cd pcre-8.10
[[email protected] pcre-8.10]#./configure --prefix=/usr/local/pcre
[[email protected] pcre-8.10]#make && make install

3.最后编译Apache时加上:

[[email protected] httpd-2.2.31]# ./configure --prefix=/usr/local/httpd --enable-so --enable-cgi --enable-charset-lite --enable-rewrite --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre/ && make && make install

安装后输出内容为:

mkdir /usr/local/httpd/build
Installing man pages and online manual
mkdir /usr/local/httpd/man
mkdir /usr/local/httpd/man/man1
mkdir /usr/local/httpd/man/man8
mkdir /usr/local/httpd/manual
make[1]: Leaving directory `/usr/src/httpd-2.2.31‘
[[email protected] httpd-2.2.31]#

4.配置服务

[[email protected] httpd-2.2.31]# ln -s /usr/local/httpd/bin/apachectl /etc/init.d/httpd
[[email protected] httpd-2.2.31]# vim /etc/init.d/httpd
#!/bin/sh
# chkconfig:35 85 15  #添加
# description:描述信息,随便写!#添加
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements.  See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
略………………
[[email protected] httpd-2.2.31]# chmod +x httpd
[[email protected] httpd-2.2.31]# chkconfig --level 35 httpd on

5.启动服务

[[email protected] httpd-2.2.31]# service  httpd start #警告解决方法,编辑配置文件,将ServerName去掉注释重启服务即可,例如:ServerName 127.0.0.1:80
httpd: Could not reliably determine the server‘s fully qualified domain name, using localhost.localdomain for ServerName
[[email protected] httpd-2.2.31]#

6.防火墙设置

[[email protected] httpd-2.2.31]# iptables -I INPUT -m multiport -p tcp --dport 80 -j ACCEPT
[[email protected] httpd-2.2.31]# service  iptables save
iptables:将防火墙规则保存到 /etc/sysconfig/iptables:     [确定]

7.测试

时间: 2024-10-05 23:52:20

王高利:Linux__apache,安装,报错解决的相关文章

VMware Virtual Machine安装报错解决1

安装完VMware virtual machine 后,再进行 "create a new virtual machine"最后点击"Finish"时,报如下错误: unable to create a new virtual machine :no permission to perform this operation 百度了一下,各种解决方案,完全看不懂说的些哈,没什么具体的操作方法,有一个还需要修改BIOS里的设置,写的很详细(带图),这么复杂,直接都懒得看

CitrixSmartAuditor安装报错解决方法

报错1:安装过程中报错 解决方法: SQLServer的配置: http://www.cnblogs.com/weizhengLoveMayDay/p/3267756.html 报错2:无法连接到SmartAuditor 服务器.请确保 SmartAuditor 服务器正在运行.无法加载场配置.远程服务器返回错误: (401)未经授权. 出现这个错误的原因是IIS的匿名访问被禁用.在服务器管理器-角色-Web服务器(IIS)下面的Default Web site和SmartAuditor Bro

Apache awstats安装报错解决过程适合初学者

** awstats 下载地址:https://jaist.dl.sourceforge.net/project/awstats/AWStats/7.0/awstats-7.0.tar.gz报错情况(已经完成)这是网页访问报错: 日志报错首先我的报错是这样子的.解决方法:第一:防火墙增加80端口允许通过策略-A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT 将策略添加至/etc/sysconfig/iptables 文

ORACLE安装报错解决

今天在虚拟机中安装了一个WINDOWS系统,用于安装oracle服务器:从安装到使用中出现了很多的问题,把这些问题解决掉,花了不少时间,查了不少的资料. 第一个,我在安装过程中,出现了ORA-00922和ORA-28000报错,这是前面的口令设置上太随意了,没有按照oracle的要求设置口令导致: ORA-00922选项缺失或无效 错误原因:一般是语句的语法有问题.比如命名不对,关键字写错等等.对于非标准的命名,一般采用双引号来创建. 解决办法: 标识符命名规则:(密码设定规则) 1.必须以字母

node-sass 安装报错解决办法

报错: gyp verb check python checking for Python executable "python2" in the PATH gyp verb check python checking for Python executable "python" in the PATH 解决办法:主要是windows平台缺少编译环境,1.先运行: npm install -g node-gyp2.然后运行:运行 npm install --glob

cacti-spine安装报错解决

如果报以下错误 checkingwhether we are using Linux Capabilities... no configure:error: Cannot find MySQL headers.  Use--with-mysql= to specify non-default path. 需安装mysql-devel [[email protected]/]# yum -y install mysql-devel 如果报以下错 checkingfor mysql_thread_i

gem install selenium-webdriver安装报错解决

保证ruby和gem没有问题的前提下 rubyinstaller-1.9.2-p180.exe  以管理员打开安装 安装时 两个单选框 都选中 C:\Documents and Settings\Administrator>rubyruby 1.9.2p180 (2011-02-18) [i386-mingw32]ruby -v 更新rubygem  gem update --system C:\Documents and Settings\Administrator>gem -v1.5.2

【已验证】 daemontools 安装 报错解决方法

安装环境:centos 6 / 7 安装流程: wget http://cr.yp.to/daemontools/daemontools-0.76.tar.gz tar -zxf daemontools-0.76.tar.gz cd admin/daemontools-0.76 报错: /usr/bin/ld: errno: TLS definition in /lib64/libc.so.6 section .tbss mismatches non-TLS reference in envdi

PHP-FPM安装报错解决

PHP源码安装 setenforce 0--------------------------------------------------------------------安装php时的报错checking libxml2 install dir... nochecking for xml2-config path...configure: error: xml2-config not found. Please check your libxml2 installation. 检查是否安装

pip安装报错 解决办法

安装库时报错:Could not fetch URL https://pypi.python.org/simple/wheel/: 解决办法:  pip --trusted-host pypi.python.org install wheel 原文地址:https://www.cnblogs.com/Jupiter1994/p/10064624.html