•Apache部署
yum -y groupinstall "Web Server"
或yum -y install http*
/etc/init.d/httpd start
curl -I http://localhost/ ; lsof -n -i:80
•MySQL部署
yum -y install mysql*
/etc/init.d/mysqld start
mysql -h localhost -e "status"
•PHP部署
yum -y install php*
php -i
搞定~
转载于:https://blog.51cto.com/cat89/405373