在Apache上部署Pro*c程序 ,经常会出现服务器500错误。最近测试Linux上的Oracle iAS, 遇到问题不少,在这里把解决500错误的过程和大家大致描述一下,希望对大家能有所帮助。
浏览器得到的错误信息如下:http://192.168.0.116:7777/cgi-bin/test
一般的,我们先检查Apache的Logs目录下的error.log文件。得到Log信息,提示如下:Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, root@Localhost and inform them of the time the error occurred,and anything you might have done that may have caused the error. More information about this error may be available in the server error log.
既然提示信息是找不到libclntsh.so.8.0文件,首先看看系统是不是有这个库文件:test: error while loading shared libraries: libclntsh.so.8.0: cannot open shared object file: No such file or directory
文件是存在的,看来是环境变量有问题,接下来检查环境变量:[oracle@Linux lib]$ pwd /u/app/oracle/product/8.1.7/lib [oracle@Linux lib]$ ls -l libcln* lrwxrwxrwx 1 oracle root 16 Oct 23 13:56 libclntsh.so -> libclntsh.so.8.0 -rwsrwxr-x 1 oracle root 6285134 Oct 23 13:56 libclntsh.so.8.0 -rwsrwxr-x 1 oracle root 8689756 Oct 23 13:57 libclntst8.a
[oracle@Linux lib]$ set | grep LIB LD_LIBRARY_PATH=/u/app/oracle/product/ias/lib:/lib:/usr/lib:/usr/openwin/lib
问题定位到:用户的环境变量不正确。修改环境变量后,得到解决。
系统环境:多加了Oracle 9ias ,其它同上。Apache是用iAS 默认的安装。 同样出现500错误。日志中的信息仍然是:
有了上次的经验,逐一的查找.....居然...不管用--用户环境变量正确,在Shell下执行test程序,可以执行,并输出正确结果。 查找Google,Metalink,得到的信息大致如下:Apache 的环境变量不正确。建议在httpd.conf文件中加入:test: error while loading shared libraries: libclntsh.so.8.0: cannot open shared object file: No such file or directory
尝试之后,没有一点作用。看来,解决的方法不对路。 从头分析:登录到oracle用户下,此时环境变量正确的,然后启动/停止Apache,用的是 apachectl start/stop命令. apachectl 这个脚本中也会涉及到环境变量,apachectl命令会不会有问题??SetEnv ORACLE_HOME 'your path' SetEnv ORACLE_SID 'your sid' SetEnv LD_LIBRARY_PATH 'your lib path'
找到了这样一段:$more apachectl
if [ -z "$LD_LIBRARY_PATH" ] then LD_LIBRARY_PATH=/u/app/oracle/product/ias/lib ; export LD_LIBRARY_PATH else LD_LIBRARY_PATH=/u/app/oracle/product/ias/lib:${LD_LIBRARY_PATH} ; export LD_LIBRARY_PATH fi
看来是ias惹的祸!修改该路径之后,问题解决。