标签:
yum -y install nginx mysql mysql-server php-fpm php-devel php-cli
php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-mssql php-snmp php-soap php-tidy
查看版本
rpm -qi mysql-server
开启服务
service mysqld start
查看服务是否设置为开机启动
chkconfig --list | grep mysqld
设置服务开机启动
chkconfig mysqld on
为root用户设置密码
mysqladmin -u root password ‘new-password‘
标签:
原文地址:http://www.cnblogs.com/zhanghongjay/p/5003591.html