Centos 7下yum搭建最基本的LAMP开发环境
Centos 版本信息
[root@iZ ~]# lsb_release -a LSB Version: :core-4.1-amd64:core-4.1-noarch Distributor ID: CentOS Description: CentOS Linux release 7.2.1511 (Core) Release: 7.2.1511 Codename: Core
安装httpd
[root@iZ ~]# yum install httpd
安装mariadb(mysql)
[root@iZ ~]# yum install mariadb [root@iZ ~]# yum install mariadb-server
安装php
[root@iZ ~]# yum install php [root@iZ ~]# yum install php-mysql
启动 apache 以及 mysql 并设置开机自启动
[root@iZ ~]# systemctl start httpd [root@iZ ~]# systemctl enable httpd [root@iZ ~]# systemctl start mariadb [root@iZ ~]# systemctl enable mariadb