Linux下mysql新建賬號及權限設置
1、權限賦予
說明:mysql部署在服務器A上,內網上主機B通過客戶端工具連接服務器A以進行數據庫操作,需要服務器A賦予主機B操作mysql的權限
1.1 在服務器A上進入mysql,假設在服務器A上mysql的賬戶是root:
mysql - u root -p
然後回車鍵入密碼!
1.2 賦予主機B操作數據庫的權限
mysql> grant usage on *.* to [email protected] identified by 'password';
說明:賦予[email protected] 使用所有數據庫的權限,在主機192.168.0.1上使用username賬戶登錄,密碼為:password www.2cto.com
mysql> grant all privileges on newdb.* to [email protected];
說明:賦予[email protected] 操作數據庫newdb的最高權限,在主機192.168.0.1上使用username賬戶登錄,無密碼
舉例:
mysql> grant all privileges on *.* to [email protected] identified by '123456' ;
說明:賦予[email protected] 使用所有數據庫的權限,在主機192.168.0.1上使用root賬戶登錄,密碼為:123456
2、移除賬號
mysql> drop user [email protected];
說明:移除賬戶root,這樣,主機192.168.0.1就不再可以使用root用戶操作服務器A上的數據庫
作者 上品物語