欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

LNMP(linux+nginx+mysql+php)服务器环境配置(二)php安装

程序员文章站 2022-04-23 22:31:45
...
php要安装的东西比较多:请根据自己需要选择安装
yum install php php-common php-devel php-eaccelerator php-fpm php-gd php-mysql php-pdo php-mbstring php-mcrypt php-xml php-pecl-memcached

首先增加www用户组和用户
groupadd www
useradd www -g www

php-fpm配置
vi /etc/php-fpm.d/www.conf

引用

user = www
group = www
php_flag[display_errors] = on


测试配置是否成功
php-fpm -t

启动php-fpm服务
service php-fpm start

以上就介绍了LNMP(linux+nginx+mysql+php)服务器环境配置(二)php安装,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。