1、安装Apache	yum install httpd httpd-devel 	设为开机启动	chkconfig httpd on	启动apache	service httpd start2、安装Mysql	yum install mysql mysql-server mysql-devel	设为开机启动	chkconfig mysqld on	启动mysql	service	mysqld start	如需修改密码,第一次: 	mysqladmin -u root password NEWPASSWORD 	已设置过: 	mysqladmin -u root -p 'oldpassword' password newpassword	执行以下命令开启远程访问限制 	grant all privileges on *.* to 'root'@'192.168.0.1' identified by 'password' with gr...