1. 程式人生 > >mysql 建立使用者、授權、修改密碼

mysql 建立使用者、授權、修改密碼

以下操作都要在mysql所在機器操作

一、建立使用者

  CREATE USER 'dog'@'localhost' IDENTIFIED BY '123456';

  或

  insert into mysql.user(Host,User,Passwordvalues('localhost','fe_group',password('123456'));

  flush privileges;

二、授權

  //授權fe_group使用者擁有fe資料庫的所有許可權   grant all privileges
 on fe.* to [email protected] identified by '123456';
  //localhost是本地訪問,其他地址訪問不了,%是所有   grant all privileges on fe.* to [email protected]'%' identified by '123456';   //刷新系統許可權表   flush privileges;

三、修改密碼

  update user set password=password('123') where user='root' and host='localhost';