grant select,insert,delete,update on test.* to test identified by 'test';Query OK, 0 rows affected (0.00 sec) #" />
#---下面創(chuàng)建了一個(gè)賬戶為
#---下面創(chuàng)建了一個(gè)賬戶為'test',密碼為'test'的賬戶
mysql>grant select,insert,delete,update on test.* to test identified by 'test';
Query OK, 0 rows affected (0.00 sec)
#---select,insert,delete,update 指定該用戶擁有的權(quán)限
#---test.* 指定該用戶的這些權(quán)限可用于哪些數(shù)據(jù)庫,*代表全部(通配符)
#---to test 指定用戶,,如果原來沒有這個(gè)用戶,grant命令創(chuàng)建一個(gè)新的用戶名
#---indentified …… 設(shè)置賬戶密碼
登錄測試
[student1@linux115 ~]$ mysql -u test -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 688
Server version: 5.0.56-enterprise-gpl-log Source
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com