php安装扩展模块后,重启不生效的原因及解决办法

Posted 散尽浮华

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php安装扩展模块后,重启不生效的原因及解决办法相关的知识,希望对你有一定的参考价值。

 

在lnmp运维环境中,我们经常会碰到有些php依赖的扩展模块没有安装,这就需要后续添加这些扩展模块。在扩展被安装配置后,往往会发现php-fpm服务重启后,这些扩展并没有真正加载进去!下面就以一个示例进行说明:

示例环境:

php安装包存放路径:/data/software/php-5.6.10.tar.gz
php安装目录:/data/php

[[email protected] ~]# ll /data/software/php-5.6.10.tar.gz 
-rw-r--r-- 1 root root 18306403 6月  11 2015 /data/software/php-5.6.10.tar.gz
[[email protected] ~]# ll -d /data/software/php-5.6.10
drwxr-xr-x 17 www www 4096 10月 13 19:38 /data/software/php-5.6.10
[[email protected] ~]# ls /data/php/
bin  etc  include  lib  php  sbin  var

使用php -m命令,发现少了bcmath和gettest扩展

[[email protected] ~]# vim /etc/profile
export PATH=$PATH:/data/php/bin
[[email protected] ~]# source /etc/profile

[[email protected] ~]# php -m|grep bcmath
[[email protected] ~]# php -m|grep gettext
[[email protected] ~]# 

现在开始安装bcmatn和gettest扩展

安装bcmath扩展
[[email protected] ~]# cd /data/software/php-5.6.10/ext/bcmath/
[[email protected] bcmath]# /data/php/bin/phpize
[[email protected] bcmath]# ./configure --with-php-config=/data/php/bin/php-config
[[email protected] bcmath]# make && make
.......
编译成功之后会告诉你一个目录
Installing shared extensions:     /data/php/lib/php/extensions/no-debug-non-zts-20131226
 
安装gettext扩展
[[email protected] ~]# cd /data/software/php-5.6.10/ext/gettext/
[[email protected] gettext]# /data/php/bin/phpize
[[email protected] gettext]# ./configure --with-php-config=/data/php/bin/php-config
[[email protected] gettext]# make && make
.......
编译成功之后会告诉你一个目录
Installing shared extensions:     /data/php/lib/php/extensions/no-debug-non-zts-20131226
 
[[email protected] ~]# ll /data/php/lib/php/extensions/no-debug-non-zts-20131226
总用量 2336
-rwxr-xr-x 1 root root  380152 10月 13 23:03 bcmath.so
-rwxr-xr-x 1 root root   50376 10月 13 23:31 gettext.so

配置php.ini
[[email protected] ~]# vim /data/php/etc/php.ini
.........
extension_dir = "/data/php/lib/php/extensions/no-debug-non-zts-20131226"
extension=bcmath.so
extension=gettext.so
 
重启php-fpm
[[email protected] ~]# /etc/init.d/php-fpm restart
Gracefully shutting down php-fpm . done
Starting php-fpm  done
 
然后再次查看bcmath和gettext扩展安装后,是否生效?
[[email protected] ~]# php -m|grep bcmath
[[email protected] ~]# php -m|grep gettext
[[email protected] ~]#
 
发现并没有生效! why!?

这是因为php-fpm启动时,没指定php.ini,所以一直都没生效!

[[email protected] etc]# /etc/init.d/php-fpm restart
Gracefully shutting down php-fpm . done
Starting php-fpm  done
[[email protected] etc]# ps -ef|grep php-fpm
root     19529     1  0 23:37 ?        00:00:00 php-fpm: master process (/data/php/etc/php-fpm.conf)
www      19530 19529  0 23:37 ?        00:00:00 php-fpm: pool www
www      19531 19529  0 23:37 ?        00:00:00 php-fpm: pool www
root     19533 17173  0 23:37 pts/4    00:00:00 grep --color=auto php-fpm

解决办法:
1)指定php.ini文件来启动php-fpm服务
[[email protected] etc]# /etc/init.d/php-fpm stop
Gracefully shutting down php-fpm . done
[[email protected] etc]# ps -ef|grep php-fpm
root     19541 17173  0 23:38 pts/4    00:00:00 grep --color=auto php-fpm
[[email protected] etc]# /data/php/sbin/php-fpm -y /data/php/etc/php-fpm.conf -c /data/php/etc/php.ini
[[email protected] etc]# ps -ef|grep php-fpm
root     19543     1  0 23:38 ?        00:00:00 php-fpm: master process (/data/php/etc/php-fpm.conf)
www      19544 19543  0 23:38 ?        00:00:00 php-fpm: pool www
www      19545 19543  0 23:38 ?        00:00:00 php-fpm: pool www
root     19547 17173  0 23:39 pts/4    00:00:00 grep --color=auto php-fpm

2)要是上面启动后,安装的php扩展还是没有生效!那就可能是php.ini文件没有放对路径(这里我是直接放大php的etc目录下的)
[[email protected] ~]# ll /data/php/etc/php.ini
-rw-r--r-- 1 root root 73243 10月 13 23:32 /data/php/etc/php.ini
[[email protected] ~]# cp /data/php/etc/php.ini /data/php/lib/
[[email protected] ~]# ll /data/php/lib/php.ini 
-rw-r--r-- 1 root root 73243 10月 13 23:35 /data/php/lib/php.ini

然后再接着重启php-fpm服务即可!
[[email protected] ~]# /etc/init.d/php-fpm restart
Gracefully shutting down php-fpm . done
Starting php-fpm  done
[[email protected] ~]# ps -ef|grep php
root     19564     1  0 23:43 ?        00:00:00 php-fpm: master process (/data/php/etc/php-fpm.conf)
www      19565 19564  0 23:43 ?        00:00:00 php-fpm: pool www
www      19566 19564  0 23:43 ?        00:00:00 php-fpm: pool www
root     19568 17173  0 23:43 pts/4    00:00:00 grep --color=auto php
[[email protected] ~]# 

最后再次查看bcmath和gettext扩展有没有生效?
[[email protected] ~]# php -m|grep bcmath
bcmath
[[email protected] ~]# php -m|grep gettext
gettext
[[email protected] ~]# 

以上是关于php安装扩展模块后,重启不生效的原因及解决办法的主要内容,如果未能解决你的问题,请参考以下文章

金蝶云星空启用科目管控后,科目相关的值更新事件无法生效原因及解决办法

Eclipse软件运行spring boot项目修改静态文件(htmlcssjs)需要重启项目才生效---解决方法(亲测可用)

Eclipse软件运行spring boot项目修改静态文件(htmlcssjs)需要重启项目才生效---解决方法(亲测可用)

系统重启后ngix reload不生效原因分析

在集成环境中修改配置文件php.ini不生效的解决办法

CentOS 7 PHP-redis扩展安装,浏览器不显示数据及redis无法储存数据常见问题解决办法