码迷,mamicode.com
首页 > 数据库 > 详细

2014 Centos 6 minimal 安装mysql5

时间:2014-08-02 17:50:13      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   2014   art   ar   sql   res   

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;

 

2014 Centos 6 minimal 安装mysql5,布布扣,bubuko.com

2014 Centos 6 minimal 安装mysql5

标签:style   color   os   2014   art   ar   sql   res   

原文地址:http://www.cnblogs.com/shher/p/3887040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!