标签:内容 分离 常用 yum 提前 abc php-fpm 设置密码 mysq
文章目录LAMP平台:192.168.111.141
Nginx平台:192.168.111.139
systemctl stop firewalld
setenfoce 0
yum install httpd httpd-devel -y
#开启服务
systemctl start httpd
#安装 mariadb(简单,快捷,轻量级别的,安装便利)数据库
yum install mariadb mariadb-server mariadb-libs mariadb-devel -y
#启动 mariadb
systemctl start mariadb.service
#过滤看下
netstat -anpt | grep 3306
mysql_secure_installstion
#回车
#给root 设置密码:abc123
#回车
#会显示Remove anonymouns users(匿名用户)-> N
#回车
#Disallow root login remotely(是否拒绝root远程登陆)-> N
#回车
#Remove test database and access to it(是否删除测试数据库)->N
#回车
#Reload pricilegs tables now(是否重新加载权限列表)-> Y
#安装php
yum install php -y
#安装 (建立php和mysql)关联插件
yum install php-mysql -y
#安装php插件
yum install -y php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-snmp php-soap curl curl-devel php-bcmath
cd /var/www/html
mv index.html index.php
vim index.php
<?php
echo "this is apache web";
?>
#再重启服务
systemctl restart httpd.service
systemctl restart mariadb
vim /usr/local/nginx/conf/nginx.conf
service nginx restart
标签:内容 分离 常用 yum 提前 abc php-fpm 设置密码 mysq
原文地址:https://blog.51cto.com/14557584/2462863