centos7.6 安装php56
问题描述
因为工作需要,需要在服务器安装php得环境部署一款前端得应用
操作
根据命令执行即可,但是,在install得时候,出现了版本依赖问题,这时候,在安装命令 后添加 --skip-broken
即可
yum install epel-release
# 添加
rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
# 安装
yum install -y --enablerepo=remi --enablerepo=remi-php56 php php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-fpm php-bcmath
# 如果遇到了版本依赖的bug,在上述命令添加下面指令
--skip-broken
# 启动,开机启动
systemctl start php-fpm
systemctl enable php-fpm