Oracle与Apache2.0.50不能同时安装?请高手指点
操作系统:Redhat AS 2.1
Apache 2.0.50.tar.gz
Oracle8.1.7.0.1
安装Oracle之前,安装Apache很正常,./configure;make;make install都没有问题。
安装Oracle之后,再安装Apache,在./configure时出现:
checking whether system defines INADDR_NONE... yes
checking for void*... yes
checking size of void*... configure: error: cannot compute sizeof (void*), 77
See `config.log' for more details.
configure failed for srclib/apr
请高手指点!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
同样情况,php-5.0.0的./configure可以正常通过,只有apache出现问题,折腾三天了,跪求高手指点!急!急!急!
錯誤提示很清楚啊
檢查下繫統定義INADDR_NONE... yes
See `config.log' for more details
查看下錯誤文檔 config。log
是有提示,但没有说明原因。
这个问题我已解决了,在安装Oracel时,安装了binutils-2.10.91.0.2-3.i386.rpm包,换回linux原带的的binutils-2.11.90.0.8-12就行了。
下面一路顺风,apache2+php5都./configure;make;make install成功,但运行
我建的index.php文件:
<html>;
<head>;
<title>HP Installation Test</title>;
</head>;
<body>;
<? php
phpinfo();
?>;
</body>;
</html>;
时出现下列错误:
Parse error: parse error, unexpected T_ECHO in /usr/local/apache2/htdocs/index.php on line 7
请问什么原因?