mysql 修改密碼和授權

2021-10-01 17:48:02 字數 798 閱讀 1802

格式:

mysql>

set password for 使用者名稱@host

= password(

'新密碼'

)例子:

mysql>

set password for root@localhost

= password(

'123456'

)

必須以最高權力使用者來授權 比如root等

grant

allon stumysql.

*to test@localhost identified by

'song123';

grant

select

,insert

,update

,deleteon*

.*to test@"%" identified by

'song123'

;grant

allon stumysql.

*to test@ '192.168.0.0' identified by

'song123'

以上三條grant語句的授權引數詳解:

1、授權 localhost主機通過test使用者和song123密碼訪問本地的stumysql庫的所有許可權;

2、授權所有主機通過test使用者和song123s密碼訪間本地的 stumysql庫的查詢、插入、更新、刪除許可權;

3、授權192.168.0.0主機通過test使用者和song123密碼訪問本地的 stumysql庫的所有許可權。

mysql修改root密碼和對連線授權

mysql修改root密碼 首先 mysql uroot p 進入mysql介面後執行 set password for root localhost password 111111 對訪問mysql的使用者和host設定許可權 首先 mysql uroot p 進入mysql介面後執行 grant...

mysql授權使用者和密碼

mysql授權使用者和密碼 1.用root賬號建立資料庫a.2.給其他的賬號重新設定許可權 取消全域性級別的許可權,全部換成資料庫級別 使它們不能訪問資料庫a 給使用者a f設定許可權 mysql grant all on a.to a f identified by 123456 表示任意在主機都...

mysql 建立使用者與授權 修改密碼

一 建立使用者和密碼 命令create user username host identified by password username 賬號名 host 指定該賬號在那台主機上登入,可以限制到指定機器ip。本地使用者用localhost。如果任意主機登入則用萬用字元 password 密碼,可...