centos7.2 yum安装 lnmp

来源:互联网 发布:mysql的date add 编辑:程序博客网 时间:2024/06/05 03:13

#安装 nginx 

yum install -y nginx
#启动
systemctl start nginx

#安装php


yum install php php-fpm php-bcmatch php-gd php-mbstring php-mcrypt php-mysql 

#启动

systemctl start php-fpm



#安装mysql (需要将centos7自带的)

wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm
yum -y install mysql57-community-release-el7-10.noarch.rpm
yum -y install mysql-community-server
#启动
systemctl start mysqld.service