程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> Centos下如何修改Mysql的root密碼,centosmysql

Centos下如何修改Mysql的root密碼,centosmysql

編輯:MySQL綜合教程

Centos下如何修改Mysql的root密碼,centosmysql


1、用帳號登錄mysql

 

mysql –u root

或#mysql –uroot –p

2、改變用戶數據庫

 

命令:mysql>use mysql

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()函數進行加密!!!!

命令:mysql> update user set password=password('root') where user='root';

mysql> update user set password=password('root') where user='root';
Query OK, 3 rows affected (0.00 sec)
Rows matched: 3  Changed: 3  Warnings: 0

4、刷新權限表

 

命令:mysql> flush privileges;

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

5、退出mysql並對mysql進行重啟即可!!

 

service mysqld restart

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