1.安装宝塔
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install.sh && sh install.sh
安装nginx1.14 mysql5.5 php5.4
关闭防火墙
service iptables stop
chkconfig iptables off
数据库配置参数(mysqld下方)增加lower_case_table_names=1 记得重载配置和重启数据库
数据库开放端口 修改数据库密码为123456,导入数据库后记得关闭外网权限
mysql -uroot -p123456
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'buzhidao123456' WITH GRANT OPTION;
flush privileges;
quit