6

好的,所以我对 oci、apache、php 和 suse 有这个可怕的问题。首先,版本:

PHP 5.3.15 (cli)
Apache/2.2.22 (Linux/SUSE)
OCI8 1.4.9
SUSE 12.2 32 bit
Oracle client 10.2.0.4

问题

我有非常简单的 php 文件:

<?php
    error_reporting(E_ALL);
    ini_set('display_errors', '1');
    oci_connect('user', 'passwd', 'host/sid');
?>

当我从命令行运行它时,它执行得很好:

machine:~ # php oci.php
machine:~ #

但是当我在浏览器中运行它时,它给了我:

Warning: oci_connect() [function.oci-connect]: OCIEnvNlsCreate() failed. There is something wrong with your system - please check that ORACLE_HOME and LD_LIBRARY_PATH are set and point to the right directories

阿帕奇配置

我已经为这个问题苦苦挣扎了一段时间,我很确定我的 apache 配置是正确的。

我在任何 apache 进程启动之前导出所有必需的变量- 我添加了

LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/oracle/home/lib; export LD_LIBRARY_PATH
ORACLE_HOME=/path/to/oracle/home; export ORACLE_HOME
TNS_ADMIN=/path/to/oracle/home/network/admin; export TNS_ADMIN
NLS_LANG=POLISH_POLAND.EE8MSWIN1250; export NLS_LANG

/etc/init.d/apache2脚本的开头(我启动 apache /etc/init.d/apache2 start)。

Apache 从wwwrun用户运行,该用户在oinstalldba组中:

machine:~ # cat /etc/apache2/uid.conf
User wwwrun
Group www
machine:~ # id wwwrun
uid=30(wwwrun) gid=8(www) groups=8(www),113(oinstall),114(dba)
machine:~ # l $ORACLE_HOME
total 216
drwxr-xr-x 48 oracle oinstall 4096 Jan 25 17:07 ./
drwxrwxr-x  3 oracle oinstall 4096 Jan 25 17:01 ../
...
machine:~ #

可能的问题

Environment我在输出部分没有任何环境变量phpinfo();- 这可能是问题吗?如果是,我该如何解决这个问题?这是某种安全问题吗?我读过启用 SELinux 的类似问题,但我没有,我的防火墙已关闭。

解决方案?

任何帮助将不胜感激!

4

4 回答 4

6

问题解决了!感谢这些设置 Oracle 环境部分)说明和 ken_yap对此线程的回答。

要将变量放在 Apache 的Environment部分中,您只需将它们添加到/etc/sysconfig/apache2file:LD_LIBRARY_PATH=/path/to/oracle/lib中。

于 2013-01-31T13:24:30.423 回答
3

另一种解决方案(不需要 root 访问)是在 php 页面中添加以下行:

putenv("ORACLE_HOME=/opt/app/oracle/product/11.2.0/db_1");
putenv("LD_LIBRARY_PATH=/opt/app/oracle/product/11.2.0/db_1/lib:/lib:/usr/lib");

问候

于 2013-06-17T20:07:32.593 回答
0

对于 Debian 用户 - 编辑文件

/etc/apache2/envvars

在文件末尾添加指向您的 OCI 库的链接 - 例如。

export LD_LIBRARY_PATH=/opt/oracle/instantclient_12_2
于 2018-09-10T11:39:13.647 回答
0

Centos 7 的另一种方法nginx

$ sudo vim /etc/ld.so.conf.d/oracle-instantclient.conf

// Add path to oracle client lib, the XX is the version, ex: /usr/lib/oracle/XX/client64/lib 

$ sudo ldconfig
$ sudo service php-fpm restart

完毕!

于 2019-01-10T10:56:44.390 回答