前几天最期待的PHP 7.0版已经发布。它和5.x版相比有许多变化和改进。本文将帮助您在CentOS / RHEL 7.1、6.7操作系统中安装PHP 7、Apache 2.4和MySQL 5.6。本教程已经过在CentOS 7.1测试,因此所有的服务命令与systemctl使用,CentOS 6的用户更改所有
systemctl命令通信
服务命令。
推荐文章:
1. 设置 Yum 库
在第一步中,安装在你的系统中剩余的教程各种设备中使用的所有必需的yum库。你在你的系统中添加REMI,EPEL,Webtatic和MySQL社区服务器存储库。
CentOS / RHEL 7
# yum install epel-release
# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
# rpm -Uvh http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
CentOS / RHEL 6
# yum install epel-release
# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
# rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm
# rpm -Uvh http://repo.mysql.com/mysql-community-release-el6-5.noarch.rpm
2. 安装PHP 7
现在从webtatic RPM存储包中安装PHP 7,使用以下命令。
# yum install php70w
现在安装需要的PHP模块。使用以下命令将在Yum列出可用的模块。
# yum search php70w
现在检查在上面的命令中列出的所有模块和安装所需的模块,比如下面。
# yum install php70w-mysql php70w-xml php70w-soap php70w-xmlrpc
# yum install php70w-mbstring php70w-json php70w-gd php70w-mcrypt
安装完成后PHP和其他PHP模块重新启动Apache服务。
# systemctl restart httpd.service
3. 安装Apache 2.4
Apache(HTTPD)是Linux系统中最流行的Web服务器。让我们用带启用EPEL和remi yum库以下命令来安装Apache Web服务器。
# yum --enablerepo=epel,remi install httpd
现在启动httpd服务,使用下面的命令来启动时自动启动。
# systemctl start httpd.service
# systemctl enable httpd.service
4. 安装MySQL 5.6
在第1步中,我们已经安装了所需的yum软件库在您的系统。让我们用下面的命令来在系统上安装MySQL服务器。
# yum install mysql-server
运行MySQL的安全性初始化,也可以设置root用户的密码。
# systemctl start mysqld.service
# mysql_secure_installation
现在重启MySQL服务,使启动系统启动。
# systemctl restart mysqld.service
# systemctl enable mysqld.service
5. 打开防火墙中的端口
对于HTTP最后打开防火墙端口(80)和 https(443)使用的服务下面的命令。
# firewall-cmd --permanent --zone=public --add-service=http
# firewall-cmd --permanent --zone=public --add-service=https
# firewall-cmd --reload
6. 检查安装的版本
让我们用下面的命令逐个检查包的安装版本的系统。
# php -v
PHP 7.0.0 (cli) (built: Dec 2 2015 20:42:32) ( NTS )
Copyright (c) 1997-2015 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2015 Zend Technologies
# httpd -v
Server version: Apache/2.4.6 (CentOS)
Server built: Nov 19 2015 21:43:13
# mysql -V
mysql Ver 14.14 Distrib 5.6.28, for Linux (x86_64) using EditLine wrapper
现在,您已经成功地在你的CentOS / RHEL 7.1、6.7的系统上安装配置LAMP。
推荐文章: