1.yum install mysql-server mysql //安装Mysql服务端和客户端
2.yum install httpd // 安装Apache
3.yum install php // 安装PHP
4.chkconfig mysqld on // 设置mysql开机启动
5.chkconfig httpd on // 设置Apache开机启动
6./etc/init.d/mysqld start // 启动mysql服务
7./etc/init.d/httpd start // 启动Apache服务
8.mysql_secure_installation // 设置mysql的root密码
Enter current password for root (Enter for none):回车
set root password? [Y/N] Y
分别输入两次密码回车
根据提示输入Y回车
day1_CentOS6.5搭建lamp环境,布布扣,bubuko.com
原文地址:http://www.cnblogs.com/zhou-80/p/3851452.html