用 yum 安装 Apache、Mysql、PHP

1、安装Apache 

yum -y install httpd httpd-devel 
安装完成后,用/etc/init.d/httpd start 启动apache 
设为开机启动:chkconfig httpd on 


2、安装mysql

yum -y install mysql mysql-server mysql-devel 
同样,完成后,用/etc/init.d/mysqld start 启动mysql 

(1) 设置mysql密码

启动mysql控制台:mysql
mysql>; USE mysql; 
mysql>; UPDATE user SET Password=PASSWORD('newpassword') WHERE user='root'; 
mysql>; FLUSH PRIVILEGES; 

(2) 允许远程登录 

mysql -u root -p 
Enter Password: <your new password> 
mysql>GRANT ALL PRIVILEGES ON *.* TO '用户名'@'%' IDENTIFIED BY '密码' WITH GRANT OPTION; 
完成后就能用mysql-front远程管理mysql了。 

(3) 设为开机启动 
chkconfig mysqld on 

3、安装php 

yum -y install php php-mysql php-common php-gd php-mbstring php-mcrypt php-devel php-xml 
/etc/init.d/httpd start

转载:http://hi.baidu.com/yinhuama/item/1bc5e77ea7d60f376f29f67f

原文地址:https://www.cnblogs.com/adforce/p/3037922.html