mysqladmin -uroot -poldnoy password ‘123‘ #初次设置密码
update mysql.user set password=password(‘123456‘) where user=‘root‘ and host=‘localhost‘;
set password=password(‘chenp‘)
flush privileges ; 修改密码
启动的时候用安全的方式启动
mysqld_safe --skip-grant-tables --user=mysql &
停止的时候要用:mysqladmin -uroot -p123 shutdown
在配置文件中加skip-grant-tables #忘记密码
sql标准语句
定义数据库创建的时候的字符集
create database db1 character set utf8 ;
select database();查看当前的数据库
select version();查看版本
select user();查看当前的用户
grant all on db1.* to ‘yunyi‘@‘localhost‘ identified by ‘123456‘;#创建用户的时候授权
create user ‘yunyi‘@localhost identified by ‘123456‘;
grant all on db1.* to ‘yunyi‘@‘localhost‘;
show grants for oldboy@localhost; 用户的权限
原文:http://10744927.blog.51cto.com/10734927/1907461