用yum安装Apache,Mysql,PHP.
2.1安装Apache
yum
install httpd httpd-devel
安装完成后,用/etc/init.d/httpd start
启动apache
设为开机启动:chkconfig httpd on
2.2 安装mysql
2.2.1
yum install mysql mysql-server mysql-devel
同样,完成后,用/etc/init.d/mysqld
start 启动mysql
2.2.2 设置mysql密码
启动mysql控制台: mysql
mysql>; USE mysql;
mysql>; UPDATE user SET
Password=PASSWORD(‘newpassword‘) WHERE user=‘root‘;
mysql>; FLUSH
PRIVILEGES;
2.2.3 允许远程登录
mysql -u root -p
Enter
Password: <your new password>
mysql>GRANT ALL PRIVILEGES ON
*.* TO ‘用户名‘@‘%‘ IDENTIFIED BY ‘密码‘ WITH GRANT
OPTION;
完成后就能用mysql-front远程管理mysql了。
2.2.4
设为开机启动
chkconfig mysqld on