阿里云上CentOS6的LAMP环境

1.安装需要的包,有依赖关系,自动帮你解决
yum install httpd mysql mysql-server php php-gd php-mbstring php-mysql
 
2.启动httpd
service httpd start
3.设为开机启动
chkconfig httpd on
 
4.启动mysqld
service mysqld start
5.设为开机启动
chkconfig mysqld on
 
6.创建一个测试文件,写个phpinfo函数
vi /var/www/html/phpinfo.php
打开浏览器,输入http://ip/phpinfo.php,就可以看到phpinfo的输出页面了