安装epel源
yum install -y epel-release
安装remi源
rpm -Uvh http://rpms.remirepo.net/enterprise/remi-release-7.rpm
查看php-fpm服务
systemctl list-unit-files |grep php
启动php-fpm服务
systemctl start php81-php-fpm
查看php-fpm服务占用的端口
cat /etc/opt/remi/php81/php-fpm.d/www.conf | grep ^listen
listen = 127.0.0.1:9000
listen.allowed_clients = 127.0.0.1
查看 php8.1 相关的应用
yum info php81*|grep ^Name
安装php8.1拓展,比如 安装zip
yum install -y php81-php-zip
评论(0)