2014 Centos 6 minimal 安装mysql5
1.安装:#yum -y install mysql-server
2.修改配置:#vi /etc/my.cnf
暂时修改一下编码(添加在密码下方添加): default-character-set = utf8
# chkconfig mysqld on ← 设置MySQL服务随系统启动自启动
# chkconfig –list mysqld ← 确认MySQL自启动mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off ← 如果2–5为on的状态就OK
#service mysqld start (# /etc/rc.d/init.d/mysqld start也可以)
mysql -uroot -p
select user,host,password from mysql.user
update mysql.user set password=password(‘123456‘) where user=‘root‘;
select user,host,password from mysql.user;
exit
service mysql restart;
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。