1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Oracle接続用extensionビルドの話

Posted at

これは何?

phpのoci8エクステンションをビルドするメモです。
あんまりやらないのですぐ忘れるんです。

前提

・Oracle Clientがインストールされていること
・phpがインストールされていること(phpenvでもなんでもOK)

ビルド

http://php.net/manual/ja/oci8.installation.php
"PECL から OCI8 をインストール"を参照。

{code}
sudo su - delivery_user
bash

curl -x ${http_proxy}:${PORT} -L https://pecl.php.net/get/oci8-2.0.10.tgz -O oci8-2.0.10.tgz -k
tar zxfv oci8-2.0.10.tgz
cd oci8-2.0.10;pwd
phpize
./configure -with-oci8=shared,${ORACLE_HOME}
make install

extension_dirにoci8.soができるので、php.iniかiniからIncludeされるファイルに

extension=oci8.so

とかけばOK。
apacheなどに組み込まれて動いているプロセスで有効化するなら、gracefulなりしてあげてください。

以上。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?