php8安装连接oracle的oci8扩展

时间:2025-03-31 08:46:15

安装php扩展

apt install php8.3-mysql php8.3-mbstring php8.3-curl php8.3-redis php8.3-bcmath php8.3-soap
  • 1

安装instantclient

cd /usr/local/src
wget /otn_software/linux/instantclient/2113000/instantclient-basic-linux.x64-21.13.0.0.
wget /otn_software/linux/instantclient/2113000/instantclient-sdk-linux.x64-21.13.0.0.
apt install unzip
unzip instantclient-basic-linux.x64-21.13.0.0.
unzip instantclient-sdk-linux.x64-21.13.0.0.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

安装oci扩展

wget //php/php-src/archive/refs/tags/php-8.3.
unzip php-8.3.
cd php-src-php-8.3.6/ext/oci8/
phpize
./configure  --without-libtool --with-oci8=instantclient,/usr/local/src/instantclient_21_13
make && make install
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
cd ../pdo_oci
phpize
./configure --with-pdo_oci=instantclient,/usr/local/src/instantclient_21_13
make && make install
  • 1
  • 2
  • 3
  • 4

启用扩展

 vim /etc/php/8.3/cli/
  • 1
extension=oci8
extension=pdo_oci
  • 1
  • 2

问题1
如果碰到“warning: The macro `AC_PROG_LIBTOOL’ is obsolete.”,因为“AC_PROG_CC_C99 is obsolete with autoconf >= 2.70”,则可以安装低版本autoconf
卸载原版本autoconf

wget ftp:///gnu/autoconf/autoconf-2.
tar zxvf autoconf-2.
cd autoconf-2.69
./configure --prefix=/usr/
make && make install
/usr/bin/autoconf -V
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

如果出现“出现:configure: error: no acceptable m4 could be found in $PATH”,查看/p/453579813

问题2
问题:: cannot open shared object file: No such file or directory
l

dd /usr/lib/php/20220829/
vim /etc/profile
export LD_LIBRARY_PATH=/usr/local/src/instantclient_21_13:$LD_LIBRARY_PATH
source /etc/profile
apt-get install xxx
  • 1
  • 2
  • 3
  • 4
  • 5