Mysql的root账号只能本地访问,不能远程访问。这时我们需要创建用户。
登录
mysql -u root -p
Enter password: (输入密码)
其中-u后跟的是用户名,-p要求输入密码,回车后在输入密码处输入密码。
用户创建、授权以及删除
创建用户
CREATE USER yy IDENTIFIED BY '123';
yy表示你要建立的用户名,后面的123表示密码
上面建立的用户可以在任何地方登陆。
如果要限制在固定地址登陆,比如localhost 登陆:
CREATE USER yy@localhost IDENTIFIED BY '123';
授权用户
mysql> GRANT ALL PRIVILEGES ON *.* TO user;@localhost
grant select,insert,update,delete on *.* to test1@"%" Identified by "abc";
格式:grant select on 数据库.* to 用户名@登录主机 identified by “密码”
修改密码
mysql> grant all privileges on pureftpd.* to koko@localhost identified by 'mimi';
查看用户信息
mysql> select host,user from mysql.user;