CentOS下Apache安装总结
环境(Environment)
操作系统:CentOS 6.8
服务器:Apache 2.4.29
其他关键依赖库:apr 1.6.3、apr-util 1.6.1、pcre-8.41
命令(Command)
- 解压命令
命令格式 | 命令说明 | 命令参数解释 |
---|---|---|
tar zxvf [dir1] -C [dir2]@H_502_28@ | 将dir1下的文件解压到dir2指定的目录下@H_502_28@ | 无@H_502_28@ |
rpm -qa [software-name]@H_502_28@ | 查询指定的软件@H_502_28@ | 无@H_502_28@ |
rpm -e --nodeps [software-full-name]@H_502_28@ | 卸载指定名称的软件@H_502_28@ | --nodeps:不做软件之间的依赖检查@H_502_28@ |
./configure --prefix=[dir] --with-[lib]@H_502_28@ | 无@H_502_28@ | --prefix:指定安装目录--with-[lib]:依赖(个人理解)@H_502_28@ |
- Apache安装
- 编译安装(make install)
问题(problem)
发生时间 | 错误内容 | 解决方案(个人) | 解决方案(网络) | 权重 |
---|---|---|---|---|
Apache 安装时@H_502_28@ | error:Cannot use an external APR with the bundled APR-util@H_502_28@ | 对apr-util重新进行编译安装@H_502_28@ | Google@H_502_28@ | 低@H_502_28@ |
Apache 安装时@H_502_28@ | error:Did not find pcre-config script at [dir]@H_502_28@ | 将pcre2替换为pcre,然后进行编译安装@H_502_28@ | Google@H_502_28@ | 低@H_502_28@ |
pcre安装时@H_502_28@ | error: You need a C++ Compiler for C++ Support@H_502_28@ | Google@H_502_28@ | yum install -y gcc gcc-c++@H_502_28@ | 低@H_502_28@ |
Apache 安装时@H_502_28@ | error:pcre-config for libpcre not found@H_502_28@ | 在./configure 配置时使用--with-pcre=[dir]指定pcre安装目录@H_502_28@ | 重新安装或者第一次安装pcre@H_502_28@ | 低@H_502_28@ |
Apache 安装时@H_502_28@ | error:no acceptable C complier found in $PATH@H_502_28@ | Google@H_502_28@ | yum -y install gcc@H_502_28@ | 高@H_502_28@ |
apr-util 安装时@H_502_28@ | (一部分错误提示)error:'apr_xml_parser' has no memebr named 'xp' @H_502_28@ | Google@H_502_28@ | yum install expat-devel@H_502_28@ | 低@H_502_28@ |
Apache 安装时@H_502_28@ | (一部分错误提示)error:openssl version is too old @H_502_28@ | Google@H_502_28@ | yum install openssl-develyum update openssl@H_502_28@ | 高@H_502_28@ |
第一次编写这种总结,如有不对之处,欢迎dalao指出(给dalao递女装)。