在不知道MySQL帳號密碼的情況下建立帳號並獲得許可權

來源:互聯網
上載者:User

在不知道MySQL帳號密碼的情況下建立帳號並獲得許可權

 

1、 知道root帳號的情況下登入mysql系統

mysql -h10.0.0.1 -uroot -p123 

2、 不知道帳號可以

a)         在一個cmd下執行mysqld-nt --skip-grant-tables,然後另外一個cmd下直接運行mysql即可直接登入。

b)         修改my.ini跳過mysql驗證。

[mysqld]

skip-grant-tables

# The TCP/IP Port the MySQL Server will listen on

port=3306

3、 成功登入後可不修改使用者密碼登入其系統

a)         儲存原始密碼

Mysql>select host,user,password from mysql.user; --記錄password的加密字串,如AAAA

b)         修改使用者密碼

Update mysql.user set password=”你知道密碼的加密字串” –修改後可登入使用者系統

c)         還原使用者原始密碼

Update mysql.user set password=”AAAA”

d)         若使用者權限較高,你可以在步驟c之前用步驟b修改的密碼登入系統創進階帳號或授權。

mysql>use mysql;
mysql>update user set password=password('新密碼') WHERE User='root'; 
mysql>flush privileges;

mysqladmin -u使用者名稱 -p舊密碼 password 新密碼

4、 添加新使用者

grant select,insert,update,delete on *.* to test1@"%" Identified by "abc"; 

grant select,insert,update,delete on mydb.* to test2@localhost identified by "abc"; 

grant select,insert,update,delete on mydb.* to test2@localhost identified by ""; 

5、 OK,收工。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.