在 CentOS 7 通过 Software Collections 源安装 apache2.4 php5.6 mysql5.6
现在不少商家,默认选择 CentOS 7 系统,但里边默认的php版本是5.4的,已经不太适合一些新版本的程序要求了。
过程:
- yum install centos-release-scl # 安装 Software Collections 源
- yum install httpd24 # 安装 apache 2.4
- scl enable httpd24 bash
- service httpd24-httpd start # 启动 apache 2.4 服务
- yum install rh-php56 rh-php56-php rh-php56-php-gd rh-php56-php-mbstring rh-php56-php-mysqlnd rh-php56-php-pdo rh-php56-php-xml # 安装 php5.6 及相关
- scl enable rh-php56 bash
- yum install rh-mysql56 # 安装 mysql5.6
- scl enable rh-mysql56 bash
- service rh-mysql56-mysqld start # 启动 mysql 服务
- mysql_secure_installation # 修改mysql的默认空密码
- 上传一份 phpmyadmin 到 opt/rh/httpd24/root/var/www/html/ ,测试正常
参考: