目录
找到.ini路径
#如果安装了PHP环境,可以使用php命令##第一种方式[root@tt ~/php7]$ php -i | grep 'php.ini'Configuration File (php.ini) Path => /home/root/php7/libLoaded Configuration File => /home/root/php7/lib/php.ini##第二种方式php --ini#如果没有安装PHP环境,使用linux自带的命令find / -name php.ini
Centos中重启PHP
修改etc/php.ini后,必须重启PHP才能生效
方式一
# 查到master process (/etc/php-fpm.conf)的进程号ps aux | grep php-fpmroot 4811 0.0 0.0 173300 884 pts/1 S+ 18:39 0:00 grep php-fpm# 杀掉进程kill -QUIT xxxx# 重启/etc/init.d/php-fpm
如果在安装PHP时,设置了权限并启动php-fpm:
chmod 755 /etc/init.d/php-fpm/etc/init.d/php-fpm startchkconfig –add php-fpm
方式二
也可以服务的方式启动、停止和重启:
service php-fpm startservice php-fpm stopservice php-fpm reload
一些经验
#报错日志修改长度log_errors_max_len = 20480