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

搞定~