程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 詳解Centos7 修改mysql指定用戶的密碼,centos7mysql

詳解Centos7 修改mysql指定用戶的密碼,centos7mysql

編輯:MySQL綜合教程

詳解Centos7 修改mysql指定用戶的密碼,centos7mysql


本文介紹了Centos7 修改mysql指定用戶的密碼,具體如下:

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

[root@localhost ~]# mysql -u root 
[root@localhost ~]# 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 -A
Database 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]> quit
Bye

6.重啟mysql或者mariadb服務

[root@localhost ~]# service mysqld restart(重啟mysql)
[root@localhost ~]# service mariadb restart(重啟mariadb)

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持幫客之家。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved