MySql中添加用戶,新建數(shù)據(jù)庫(kù),用戶授權(quán),刪除用戶,修改密碼(注意每行后邊都跟個(gè);表示一個(gè)命令語(yǔ)句結(jié)束):
1.新建用戶
1.1 登錄MYSQL:
@>mysql -u root -p
@>密碼
1.2 創(chuàng)建用戶:
mysql> insert into mysql.user(Host,User,Password) values("localhost","test",password("1234"));
這樣就創(chuàng)建了一個(gè)名為:test 密碼為:1234 的用戶。
注意:此處的"localhost"政己,是指該用戶只能在本地登錄驶睦,不能在另外一臺(tái)機(jī)器上遠(yuǎn)程登錄。如果想遠(yuǎn)程登錄的話蒸播,將"localhost"改為"%"睡榆,表示在任何一臺(tái)電腦上都可以登錄。也可以指定某臺(tái)機(jī)器可以遠(yuǎn)程登錄袍榆。
1.3 然后登錄一下:
mysql>exit;
@>mysql -u?test -p
@>輸入密碼
mysql>登錄成功
2.為用戶授權(quán)
授權(quán)格式:grant 權(quán)限 on 數(shù)據(jù)庫(kù).* to 用戶名@登錄主機(jī) identified by "密碼";
2.1 登錄MYSQL(有ROOT權(quán)限)胀屿,這里以ROOT身份登錄:
@>mysql -u root -p
@>密碼
2.2 首先為用戶創(chuàng)建一個(gè)數(shù)據(jù)庫(kù)(testDB):
mysql>create database testDB;
2.3 授權(quán)test用戶擁有testDB數(shù)據(jù)庫(kù)的所有權(quán)限(某個(gè)數(shù)據(jù)庫(kù)的所有權(quán)限):
mysql>grant all privileges on testDB.* to test@localhost identified by '1234';
? mysql>flush privileges;//刷新系統(tǒng)權(quán)限表
格式:grant?權(quán)限 on 數(shù)據(jù)庫(kù).* to 用戶名@登錄主機(jī) identified by "密碼";
2.4 如果想指定部分權(quán)限給一用戶,可以這樣來(lái)寫:
mysql>grant select,update on testDB.* to test@localhost identified by '1234';
mysql>flush privileges; //刷新系統(tǒng)權(quán)限表
2.5 授權(quán)test用戶擁有所有數(shù)據(jù)庫(kù)的某些權(quán)限:
mysql>grant select,delete,update,create,drop on *.* to test@"%" identified by "1234";
???? //test用戶對(duì)所有數(shù)據(jù)庫(kù)都有select,delete,update,create,drop 權(quán)限包雀。
//@"%" 表示對(duì)所有非本地主機(jī)授權(quán)宿崭,不包括localhost。(localhost地址設(shè)為127.0.0.1才写,如果設(shè)為真實(shí)的本地地址葡兑,不知道是否可以,沒(méi)有驗(yàn)證赞草。)
//對(duì)localhost授權(quán):加上一句grant all privileges on testDB.* to test@localhost identified by '1234';即可讹堤。
3. 刪除用戶
? @>mysql -u root -p
@>密碼
? mysql>Delete FROM user Where User='test' and Host='localhost';
? mysql>flush privileges;
? mysql>drop database testDB; //刪除用戶的數(shù)據(jù)庫(kù)
刪除賬戶及權(quán)限:>drop user 用戶名@'%';
>drop user 用戶名@?localhost;?
4. 修改指定用戶密碼
? @>mysql -u root -p
? @>密碼
?? mysql>update mysql.user set password=password('新密碼') where User="test" and Host="localhost";
? mysql>flush privileges;
5. 列出所有數(shù)據(jù)庫(kù)
mysql>show database;
6. 切換數(shù)據(jù)庫(kù)
mysql>use '數(shù)據(jù)庫(kù)名';
7. 列出所有表
mysql>show tables;
8. 顯示數(shù)據(jù)表結(jié)構(gòu)
mysql>describe 表名;
9. 刪除數(shù)據(jù)庫(kù)和數(shù)據(jù)表
mysql>drop database 數(shù)據(jù)庫(kù)名;
mysql>drop table 數(shù)據(jù)表名;
[原文轉(zhuǎn)自:http://www.cnblogs.com/fly1988happy/archive/2011/12/15/2288554.html]