centos7下全程yum安装适用于dbshop的LNMP环境(转)
作者:蓝染君 (QQ:372463778)
服务器:阿里云ECS 1核1G 1M
操作系统:centos7.2
软件搭配:nginx1.10.2 + mariadb5.5.52 +php5.4.16
下面我们开始安装:
1、更新系统
1 |
yum update |
2、安装nginx
1 |
sudo yum -y install nginx |
启动nginx
1 |
sudo systemctl start nginx |
开机启动nginx
1 |
sudo systemctl enable nginx |
2、安装[……]