首先,我们需要为CentOS安装EPEL仓库,然后执行以下命令以更新系统:
sudo yum update
然后安装PHP和必要的扩展:
sudo yum --enablerepo=epel -y install php php-cli php-common php-devel php-mysql php-pear php-mbstring php-fpm php-gd
这里的 --enablerepo=epel
表示启用EPEL仓库,后面 -y
表示自动回答yes
。
安装完毕后,我们可以执行以下命令来检查PHP的版本:
php -v
随后,我们可以安装php-fpm进程管理器和该进程的常规配置:
sudo yum -y install php-fpm
sudo chkconfig php-fpm on
sudo service php-fpm start
这里的 chkconfig
命令和 service
命令用于将该服务设置为开机自启动并立即启动服务。
最后,我们需要为Nginx Web服务器配置PHP支持,即在Nginx配置文件中编辑以下内容( /etc/nginx/conf.d/default.conf
):
index index.html index.htm index.php;
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
这会使Nginx执行PHP脚本并在Web浏览器中呈现结果。
其中,常规配置的示例代码如下:
root@centos7:/home/my-site.com # vim /etc/nginx/conf.d/default.conf
server {
listen 80;
server_name my-site.com www.my-site.com;
# note that these lines are originally from the "location /" block
root /usr/share/nginx/html;
index index.html index.htm;
location / {
try_files $uri $uri/ =404;
}
error_page 404 /404.html;
location = /40x.html {
root /usr/share/nginx/html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# pass the PHP scripts to FastCGI server listening on the php-fpm socket
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:centos6-7 yum安装php的方法(推荐) - Python技术站