標籤:
http://www.cnblogs.com/cnblogsfans/archive/2009/09/21/1570942.html
http://www.jb51.net/article/31902.htm
mysql> insert into mysql.user(Host,User,Password) values("localhost","test",password("1234"));
這樣就建立了一個名為:test 密碼為:1234 的使用者。
注意:此處的"localhost",是指該使用者只能在本地登入,不能在另外一台機器上遠程登入。如果想遠程登入的話,將"localhost"改為"%",表示在任何一台電腦上都可以登入。也可以指定某台機器可以遠程登入。
為使用者授權
授權格式:grant 許可權 on 資料庫.* to 使用者名稱@登入主機 identified by "密碼";
- 登入MYSQL(有ROOT許可權),這裡以ROOT身份登入:
@>mysql -u root -p
@>密碼
mysql>create database testDB;
- 授權test使用者擁有testDB資料庫的所有許可權(某個資料庫的所有許可權):
mysql>grant all privileges on testDB.* to [email protected] identified by ‘1234‘;
mysql>flush privileges;//重新整理系統許可權表
格式:grant 許可權 on 資料庫.* to 使用者名稱@登入主機 identified by "密碼";
mysql>grant select,update on testDB.* to [email protected] identified by ‘1234‘;
mysql>flush privileges; //重新整理系統許可權表
mysql>grant select,delete,update,create,drop on *.* to test@"%" identified by "1234";
//test使用者對所有資料庫都有select,delete,update,create,drop 許可權。
//@"%" 表示對所有非本地主機授權,不包括localhost。(localhost地址設為127.0.0.1,如果設為真實的本地地址,不知道是否可以,沒有驗證。)
//對localhost授權:加上一句grant all privileges on testDB.* to [email protected] identified by ‘1234‘;即可。
mysql相關配置