博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
安装源码httpd-2.4.1错误解决办法
阅读量:5767 次
发布时间:2019-06-18

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

apache常见错误总结:

1、./configure报错
Configuring Apache Portable Runtime library ...
checking for APR... configure: error: the --with-apr parameter is incorrect. It must specify an install prefix, a build directory, or an apr-config file.
解决办法:
下载安装
apr:http://apache.etoak.com//apr/apr-1.4.6.tar.gz
apr-utils:http://apache.etoak.com//apr/apr-util-1.4.1.tar.gz
或者yum -y install apr apr-util
checking for pcre-config... false
configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/
解决办法:
[root@www httpd-2.4.1]# yum -y install pcre-devel
2、启动报错:
[root@www bin]# service httpd start
故障1:AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain. Set the 'ServerName' directive globally to suppress this message
httpd (pid 912) already running
其实在这里并不是报错,只是个提醒信息,解决办法比较多
(1)、在/etc/hosts写下当前ip与主机名的对应关系
(2)、在本机指能解析本机主机名的DNS
(3)、修改主配置文件,找到ServerName这一行写入本机主机名

故障2:Name or service not known: AH01564: unable to find IPv4 address of "2015120415424"

AH00016: Configuration Failed

原因是主机名为数字,只需将主机名更改为非纯数字,修改完成后再/etc/hosts中将原来的主机名替换为新修改的,如果没有原主机名,那么就添加一行:

127.0.0.1  新主机名
保存后重启,然后就能正常启动了

参考资料:

本文转自 boy461205160 51CTO博客,原文链接:http://blog.51cto.com/461205160/1760165

转载地址:http://aabux.baihongyu.com/

你可能感兴趣的文章
关于微信二次分享 配置标题 描述 图片??
查看>>
springcloud使用zookeeper作为config的配置中心
查看>>
校园火灾Focue-2---》洗手间的一套-》电梯
查看>>
css控制文字换行
查看>>
bzoj1913
查看>>
bzoj2301(莫比乌斯反演)
查看>>
【转】对于HttpClient和HtmlUnit的理解
查看>>
L104
查看>>
分镜头脚本
查看>>
链表基本操作的实现(转)
查看>>
邮件发送1
查看>>
[转] libcurl异步方式使用总结(附流程图)
查看>>
编译安装LNMP
查看>>
[转]基于display:table的CSS布局
查看>>
企业级 SpringBoot 教程 (二)Spring Boot配置文件详解
查看>>
crm 02--->讲师页面及逻辑
查看>>
AS3.0 Bitmap类实现图片3D旋转效果
查看>>
Eigen ,MKL和 matlab 矩阵乘法速度比较
查看>>
带三角的面包屑导航栏(新增递增数字)
查看>>
Web应用程序安全与风险
查看>>