Centos7 修改mysql指定使用者的密碼

來源:互聯網
上載者:User

標籤:

1.登陸mysql或者mariadb(兩種任選其一)

[[email protected] ~]# mysql -u root [[email protected] ~]# mysql -uroot -p

2.切換到儲存使用者名稱和密碼的資料庫

MariaDB [mysql]> use mysql;斷行符號,會顯示以下內容Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -ADatabase changed

3.修改密碼,適用password()函數進行加密,實際上就是執行sql語句來更新指定使用者的密碼

MariaDB [mysql]> update user set password=password(‘新密碼‘) where user=‘要更新密碼的使用者名稱‘;斷行符號  -> ;Query OK, 0 rows affected (0.00 sec)Rows matched: 5 Changed: 0 Warnings: 0

4.重新整理使用者權限列表

MariaDB [mysql]> flush privileges;斷行符號Query OK, 0 rows affected (0.00 sec)

5.退出mysql登陸

MariaDB [mysql]> quitBye

6.重啟mysql或者mariadb服務

[[email protected] ~]# service mysqld restart(重啟mysql)[[email protected] ~]# service mariadb restart(重啟mariadb)

Centos7 修改mysql指定使用者的密碼

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.