Home > Backend Development > PHP Tutorial > php for Linux之mysqli扩展模块安装与配置

php for Linux之mysqli扩展模块安装与配置

WBOY
Release: 2016-06-23 13:35:02
Original
1407 people have browsed it

 

cd /root/php-5.6.8/ext/mysqli

 

/usr/local/php/bin/phpize

 

./configure --with-php-config=/usr/local/php/bin/php-config --with-mysqli=/usr/local/mysql/bin/mysql_config

 

make && make install

 

编辑 /usr/local/php/lib/php.ini ,增加如下内容:

 

extension_dir = "/usr/local/php/lib/php/extensions/no-debug-zts-20131226/"

 

extension = "mysqli.so"

 

 

Apache:

/etc/init.d/httpd stop

/etc/init.d/httpd start

 

Nginx:

nginx -s stop

 

php-fpm开启:

/usr/local/php/sbin/php-fpm

 

php-fpm 关闭:

kill -INT `cat /usr/local/php/var/run/php-fpm.pid`

 

php-fpm 重启:

kill -USR2 `cat /usr/local/php/var/run/php-fpm.pid`

 

 

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