How to compile and install php mysql

藏色散人
Release: 2023-03-14 22:36:02
Original
2466 people have browsed it

How to compile and install mysql with php: 1. Enter the pdo_mysql directory of the php source code package installation path; 2. Run phpize; 3. Run config and specify the location of the mysql and php directories; 4. Compile and install to generate mysql. so; 5. Add the mysql.so extension configuration.

How to compile and install php mysql

The operating environment of this article: linux5.9.8 system, PHP7.1 version, DELL G3 computer

How to compile and install mysql with php?

PHP compile and install the extension of mysql.so

1. Enter the pdo_mysql directory of the php source code package installation path

/usr/local/src/php/package/php-5.6.29/ext/pdo_mysql
Copy after login

2. Run phpize, generate a configure file in this directory

/usr/local/php/bin/phpize
Copy after login

3. Run config, specify the mysql and php directory locations

./configure --prefix=/data/php --with-pdo-mysql=/data/mysql/bin/mysql_config --with-php-config=/data/php/bin/php-config --with-zlib-dir=/root/php-5.6.25/ext/zlib
Copy after login

4. Compile and install, generate mysql.so

make && make install
Copy after login

5. Modify the php.ini file, add the mysql.so extension configuration, save and exit

vim /data/php/etc/php.ini
extension=pdo_mysql.so
Copy after login

6. Restart php-fpm

service php-fpm restart
Copy after login

7. Test, add the php file in the web directory, For example, /data/nginx/html/mysql.php

<?php
$con = mysql_connect(&#39;localhost&#39;,&#39;root&#39;,&#39;&#39;);
if($con){
    die(&#39;ok&#39;);
}else{
    die(&#39;Could not connect: &#39; . mysql_error());
}
Copy after login

Access URL, such as: http://ip/mysql.php

If ok is displayed, the configuration is successful

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to compile and install php mysql. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template