L           A             M          P

Linux    Apache   Mysql    PHP

下载及安装

https://lamp.sh/

详细步骤

yum -y install wget screen unzip

wget -O lamp.zip https://github.com/teddysun/lamp/archive/master.zip

unzip lamp.zip

cd lamp-master/

chmod +x *.sh

screen -S lamp

./lamp.sh

Apache虚拟主机配置使用

Apache基础配置文件在 /usr/local/apache/conf/httpd.conf //可以增加监听端口

lamp add   //创建虚拟主机 lamp del    //删除虚拟主机 lamp list    //列出虚拟主机

创建好的虚拟主机配置文件都在 /usr/local/apache/conf/vhost/xxx.conf

注意!

未对Centos7做出适当优化,需手动增加防火墙规则

firewall-cmd –permanent –add-port=80/tcp //添加80端口

firewall-cmd –permanent –add-port=443/tcp //添加443端口

Mysql管理

可以通过http://ip/phpmyadmin来进行登录管理

如果要通过Navicat等方式连接管理还需要将mysql user表中的localhost改为%

PHP使用

未涉及,貌似也不会涉及