Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The method of configuring php to connect to database under linux

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

How to configure php to connect to database under linux? This problem may be often seen in our daily study or work. I hope you can gain a lot from this question. The following is the reference content that the editor brings to you, let's take a look at it!

First, install oracle-instantclient

Download oracle-instantclient11.2-basic-11.2.0.4.0-1.x86_64.rpm

Download oracle-instantclient11.2-devel-11.2.0.4.0-1.x86_64.rpm

Put it in / usr/packages/ directory.

# rmp-ivh oracle-instantclient*

The / usr/lib/oracle/11.2/client/lib/ directory is generated.

II. Modify / etc/ld.so.conf configuration file

Add the following:

/ usr/lib/oracle/11.2/client/lib/

Execute the command:

# ldconfig

Third, install oci8

Download the latest oci8 components

Download oci-2.0.8.tgz

Put it in / usr/packages/ directory.

# tar-xvzf oci-2.0.8.tgz# cd oci-2.0.8# / usr/local/php/bin/phpize (generate configure configuration file with phpize) #. / configure-- with-php-config=/usr/local/php/bin/php-config-- with-oci8=shared,instantclient,/usr/lib/oracle/11.2/client/lib# make & & make install

After success, I will tell you that oci8.so has been successfully placed in the following directory.

4. Configure PHP to support OCI extension

Modify php configuration file

# vi / usr/local/php/lib/php.ini file

Append the following after the extension entry

Extension=oci8.so

Restart the Apache service test

# apachectl restart

VI. Test database connection

Write oracle.php in the root directory of the site.

The code is as follows:

Browser address bar input: http://192.168.1.131/oracle.php

Description: 192.168.1.131 is the server address, which points directly to the site and directory of the server Apache.

Show Connected Oracle Successd! Indicates that the database connection was successful.

Thank you for reading! After reading the above, do you have a general idea of how to configure php to connect to the database under linux? I hope the content of the article will be helpful to all of you. If you want to know more about the relevant articles, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report