最近的项目需要用php访问oracle数据库,不得不在linux下给php安装oci8扩展。php也可以使用pdo访问oracle数据库,但还是需要安装客户端。
首先到oracle官网的这个页面下载相关的文件,注意要连数据库服务器的版本,一定要对应,否则安装成功也会连不上,同时也要区分32位、64位服务器,比如我要连的数据库服务器是oracle10.2.0.4,64位主机,那么我要下载下面三个文件:
oracle-instantclient-basic-10.2.0.4-1.x86_64.rpm oracle-instantclient-devel-10.2.0.4-1.x86_64.rpm oracle-instantclient-sqlplus-10.2.0.4-1.x86_64.rpm
1.用以下命令安装
# rpm -ivh oracle-instantclient-basic-10.2.0.4-1.x86_64.rpm oracle-instantclient-devel-10.2.0.4-1.x86_64.rpm oracle-instantclient-sqlplus-10.2.0.4-1.x86_64.rpm
2.安装OCI8 PHP扩展
# yum install libaio # cd ~ # wget http://pecl.php.net/get/oci8-1.3.5.tgz
3.然后执行命令
# tar zxvf oci8-1.3.5.tgz # cd oci8-1.3.5/ # /usr/local/php5/bin/phpize CFLAGS=/usr/lib/oracle/11.2/client64/ CXXFLAGS=/usr/lib/oracle/11.2/client64/ # ./configure --with-php-config=/usr/local/php5/bin/php-config --with-oci8=instantclient,/usr/lib/oracle/11.2/client64/lib/ # make # make install(这里多运行几次,直到出现如下提示) [root@webserver02 oci8-1.3.5]# make install /bin/sh /root/oci8-1.3.5/libtool --mode=install cp ./oci8.la /root/oci8-1.3.5/modules cp ./.libs/oci8.so /root/oci8-1.3.5/modules/oci8.so cp ./.libs/oci8.lai /root/oci8-1.3.5/modules/oci8.la PATH="$PATH:/sbin" ldconfig -n /root/oci8-1.3.5/modules ---------------------------------------------------------------------- Libraries have been installed in: /root/oci8-1.3.5/modulesIf you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,--rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- Installing shared extensions: /usr/local/php5/lib/php/extensions/no-debug-zts-20090626/ # cd /usr/local/php5/lib
4.创建ext目录
# mkdir ext/
# cp /root/oci8-1.3.5/modules/oci8.so /usr/local/php5/lib/ext/
5.在php.ini里面加上extension=oci8.so
如下:
extension_dir = "/usr/local/php5/lib/ext" extension = "oci8.so" session.save_path = "/tmp/php" oci8.privileged_connect = on
重启apache服务:
/usr/local/apache2/bin/apachectl stop /usr/local/apache2/bin/apachectl start
刷新测试页面。发现oci8出现了,则大功告成.
我在让OCI8在我的服务器安装上工作时遇到了特定的问题。 第一次设置: Win 2008服务器32位 ZendServer for PHP with Apache2.2 PHP版本5.3.14,其中没有php_oci8文件 没有安装甲骨文的东西 我需要能够连接到远程oracle数据库,所以我发现应该使用OCI8扩展。为了使OCI8正常工作,我还应该在服务器上至少需要Oracle Instant C
本文向大家介绍Linux下安装PHP MSSQL扩展教程,包括了Linux下安装PHP MSSQL扩展教程的使用技巧和注意事项,需要的朋友参考一下 PHP天然就对MySQL有良好的支持,但是想要用PHP对SQL Server进行操作,则需要花点时间了。今天刚好团队里的一个项目需要用PHP对SQL Server进行操作,遂帮忙配置好环境。 首先说明下,服务器的系统版本为SUSE Linux Ente
本文向大家介绍Windows下编译安装php扩展eAccelerator教程,包括了Windows下编译安装php扩展eAccelerator教程的使用技巧和注意事项,需要的朋友参考一下 eAccelerator是一个开源PHP加速器,用于优化程序,编码器和动态内容缓存。它通过在编译状态下对PHP脚本进行缓存以提高他们的性能,所以那些系统开销在编译时几乎可以被消除。它还能够对脚本进行优化以便加速它
本文向大家介绍linux下安装php的memcached客户端,包括了linux下安装php的memcached客户端的使用技巧和注意事项,需要的朋友参考一下 下面将介绍安装php的memcached客户端安装步骤 1、下载安装libmemcached客户端 官网地址:http://libmemcached.org/libMemcached.html 2、下载安装memcached 官网地址:ht
我们正在尝试将现有的PHP 7.4应用程序从运行在Windows server 2012上的内部服务器提升到Azure Web应用程序。PHP应用程序使用OCI8连接到Oracle数据库。在没有启用OCI8扩展的情况下,一切(数据库连接除外)都可以正常工作。 我们https://docs.microsoft.com/en-us/archive/blogs/azureossds/access-ora
在简介一节中我们提到,客户端层暴露了一个供人类使用的用户界面。 客户端由两部分组成:一个只读的简单 HTML 页面和一个可交互的单页 JavaScript 应用。两者都从 JSON API 读取数据。 路由 论坛所有的默认路由都在 Flarum\Forum\ForumServiceProvider 中注册。每个路由有一个对应的 Action (动作)类, 这个类本质上就是控制器。每个动作接受一个