#---下面建立了乙個賬戶為'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 指定該使用者擁有的許可權
#---test.* 指定該使用者的這些許可權可用於哪些資料庫,*代表全部(萬用字元)
#---to test 指定使用者,如果原來沒有這個使用者,grant命令建立乙個新的使用者名稱
#---indentified …… 設定賬戶密碼
登入測試
[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>
mysql 新增 刪除新使用者
1.遠端登入mysql mysql h ip u root p 密碼 2.建立使用者 格式 grant 許可權 on 資料庫.to 使用者名稱 登入主機 identified by 密碼 例1 增加乙個test1使用者,密碼為123456,可以在任何主機上登入,並對所有資料庫有查詢,增加,修改和刪除...
mysql建立新使用者和資料庫
create database schooldb default character set utf8 5.建立資料庫 create database 123 default charset utf8 為本專案建立資料庫使用者 不再使用root賬戶 create user 123 identifie...
MySQL新增新使用者 建立資料庫 分配許可權
登入mysql mysql u root p檢視當前使用者 select user,host from mysql.user 新增新使用者 允許本地 ip 訪問 localhost,127.0.0.1 create user test localhost identified by 123456 重...