基于LANMP构建PHP测试环境
centos7中LANMP配置:
1、下载 wegt http://dl.wdlinux.cn/files/lanmp_v3.tar.gz
2、解压 tar zxvf lanmp_v3.tar.gz
3、安装组件 sh lanmp.sh 出现四行以空格开头的语句,安装成功
4、配置 Apache
1、Apache 查找Apache配置文件httpd.conf位置 find / -name httpd.conf
2、编辑httpd.conf文件,设置Apache网站的服务端口 两个地方: Listen 88 ServerName localhost:88
3、设置网站访问权限:放开远程访问权限 两处 1、AllowOverride all Require all granted 2、根目录下的AllowOverride all Require all granted
4、保存,重启Apache服务 ./apachectl restart
5、配置MySQL
1、查找my.cnf 文件位置 find / -name my.cnf (etc中)
2、打开 ,在[mysqld]下增加 skip-grant-tables (取消密码验证,实现无密码登录MySQL)
重启mysql systemctl restart mysql
登录 无密码方式 cd /www/wdlinux/mysql-5.5.62/bin
mysql -h127.0.0.1 -uroot
3、进入后设置root账户密码 root
5.7以前版本 update mysql.user set password=password("root") where user="root";
后 update mysql.user set authentication_string=password("root") where user-"root";
exit 退出登录
进入my.cnf文件中删除 skip-grant-tables 并保存
4、重启 mysql systemctl restart mysql (会有一会停顿)
登录 mysql -h127.0.0.1 -uroot -proot