代码拉取完成,页面将自动刷新
同步操作将从 宇润/PHP 环境一把梭安装工具集 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/bin/bash
# 适合 CentOS 等使用 yum 的 Linux 系统
if [[ $EUID -ne 0 ]]; then
echo -e "\033[31m请使用 sudo 权限运行此脚本\033[0m"
exit 1
fi
redhatRelease=`cat /etc/redhat-release | awk '{match($0,"release ")
print substr($0,RSTART+RLENGTH)}' | awk -F '.' '{print $1}'`
if [[ "" == $redhatRelease ]]; then
echo -e "\033[31m你的系统似乎不是 RedHat 系列\033[0m"
exit 1
fi
# CentOS 8 必须启用 PowerTools
if [[ "8" == $redhatRelease ]]; then
dnf config-manager --set-enabled PowerTools
fi
if [[ "" == "$(rpm -qa|grep epel-release)" ]]; then
yum install epel-release -y
fi
echo -e "\033[32m请选择 PHP 版本:\033[0m"
echo -e "\033[32m0-7.0\033[0m"
echo -e "\033[32m1-7.1\033[0m"
echo -e "\033[32m2-7.2\033[0m"
echo -e "\033[32m3-7.3\033[0m"
echo -e "\033[32m4-7.4\033[0m"
read -p "请选择:" PHP_VERSION
if [[ "0" == $PHP_VERSION ]]; then
cmdPHPVersion="php70-php"
elif [[ "1" == $PHP_VERSION ]]; then
cmdPHPVersion="php71-php"
elif [[ "2" == $PHP_VERSION ]]; then
cmdPHPVersion="php72-php"
elif [[ "3" == $PHP_VERSION ]]; then
cmdPHPVersion="php73-php"
elif [[ "4" == $PHP_VERSION ]]; then
cmdPHPVersion="php74-php"
else
echo -e "\033[31m版本选择错误\033[0m"
exit 1
fi
# 安装源
yum install -y https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/remi-release-$redhatRelease.rpm # 国内清华源
# 官方源:http://rpms.remirepo.net/enterprise/remi-release-7.rpm
# 安装php
# 基本很全了,如果不够,自己再装
echo -e "\033[32m安装 PHP...\033[0m"
yum install -y $cmdPHPVersion-fpm $cmdPHPVersion-cli $cmdPHPVersion-bcmath $cmdPHPVersion-bz2 $cmdPHPVersion-curl $cmdPHPVersion-devel $cmdPHPVersion-pear $cmdPHPVersion-gd $cmdPHPVersion-mbstring $cmdPHPVersion-mysql $cmdPHPVersion-opcache $cmdPHPVersion-sqlite3 $cmdPHPVersion-xml $cmdPHPVersion-zip
# 快捷方式
update-alternatives --install /usr/bin/php php /opt/remi/php7$PHP_VERSION/root/usr/bin/php $PHP_VERSION
update-alternatives --install /usr/bin/phpize phpize /opt/remi/php7$PHP_VERSION/root/usr/bin/phpize $PHP_VERSION
update-alternatives --install /usr/bin/php-config php-config /opt/remi/php7$PHP_VERSION/root/usr/bin/php-config $PHP_VERSION
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。