CentOS7中yum安装lamp环境方法
时间:2014-12-28 00:20 来源:linux.it.net.cn 作者:IT
由于nginx还没有CentOS7的源,就安装了个lamp环境试试,过程非常简单:
1、yum安装lamp软件包
yum install httpd php php-gd php-mysql mysql-server
2、启动环境
systemctl start httpd.service
systemctl start mysql.service
3、开机启动
systemctl enable httpd.service
systemctl enable mysql.service
网站根目录默认是/var/www/html,写个phpinfo看看吧。
(责任编辑:IT)
由于nginx还没有CentOS7的源,就安装了个lamp环境试试,过程非常简单: 1、yum安装lamp软件包 yum install httpd php php-gd php-mysql mysql-server 2、启动环境
systemctl start httpd.service 3、开机启动
systemctl enable httpd.service 网站根目录默认是/var/www/html,写个phpinfo看看吧。 (责任编辑:IT) |