在使用mysql時(shí),如果想修改用戶密碼,怎么修改?我們可以借助客戶端工具來修改,下面來看一下。
我們提供的服務(wù)有:成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、金水ssl等。為成百上千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的金水網(wǎng)站制作公司
01
打開客戶端工具Navicat,打開數(shù)據(jù)庫里的mysql庫,這是一個(gè)系統(tǒng)數(shù)據(jù)庫。
02
打開后,在Tables表里,找到user表,這是保存系統(tǒng)用戶的一個(gè)表數(shù)據(jù)。
03
打開后,就可以在這里看到每個(gè)數(shù)據(jù)庫的用戶名和密碼了。
04
要修改密碼,我們點(diǎn)擊單元格,讓其變成編輯狀態(tài)后,直接輸入新的密碼就行了。
想知道linux下怎么修改密碼嗎?下面由我為大家整理了linux mysql修改密碼命令,希望大家喜歡!
linux mysql修改密碼命令
1.修改root密碼
linux mysql修改密碼命令方法1:使用mysqladmin命令
--適用于記得root舊密碼,修改root密碼
語法:
mysqladmin -u用戶名 -p舊密碼 password 新密碼
例如:
# mysqladmin -u root -proot password mysql
--注意:如當(dāng)舊密碼輸入錯(cuò)誤時(shí)會(huì)報(bào)如下錯(cuò)誤
# mysqladmin -u root -proot1 password mysql
mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: YES)'
linux mysql修改密碼命令方法2:直接更新user表password字段
--適用于忘記root密碼,而對(duì)root密碼進(jìn)行重置
Step 1: 修改MySQL的登錄設(shè)置
# vi /etc/my點(diǎn)吸煙 f
--windows系統(tǒng)是my.ini文件
--在[mysqld]的段中加上一句:skip-grant-tables,如沒有[mysqld]字段,可手動(dòng)添加上
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
skip-name-resolve
skip-grant-tables
Step 2: 重新啟動(dòng)mysql
[root@gc ~]# service mysql restart
Shutting down MySQL..[確定]
Starting MySQL...[確定]
Step 3: 登錄并修改MySQL的root密碼
--此時(shí)直接用mysql即可無需密碼即可進(jìn)入數(shù)據(jù)庫了
[root@gc ~]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.5.24 MySQL Community Server (GPL)
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql use mysql;
Database changed
mysql update user set password=password('new_password') where user='root';
Query OK, 5 rows affected (0.00 sec)
Rows matched: 5 Changed: 5 Warnings: 0
mysql flush privileges;
Query OK, 0 rows affected (0.00 sec)
--注意:如果沒做step1,直接用mysql登錄時(shí)會(huì)報(bào)如下錯(cuò)誤
[root@gc ~]# mysql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
Step 4: 將MySQL的登錄設(shè)置修改回來
再刪除/etc/my點(diǎn)吸煙 f文件中的skip-grant-tables
Step 5: 重新啟動(dòng)mysql
[root@gc ~]# service mysql restart
Shutting down MySQL..[確定]
Starting MySQL...[確定]
2.修改mysql其它用戶密碼
同樣,普通用戶也可以用上面的方法
--使用mysqladmin命令
[root@njdyw ~]# mysqladmin -u user1 -ppass1 password pass2
--直接修改數(shù)據(jù)庫表
[root@njdyw ~]# mysql -u user1 -ppass1 –Dmysql
mysql update user set password=password('pass2') where user='user1';
mysql flush privileges;
方法如下:
1、打開mysql.exe和mysqld.exe所在的文件夾,復(fù)制路徑地址
2、打開cmd命令提示符,進(jìn)入上一步mysql.exe所在的文件夾。
3、輸入命令 ?mysqld --skip-grant-tables ?回車,此時(shí)就跳過了mysql的用戶驗(yàn)證。注意輸入此命令之后命令行就無法操作了,此時(shí)可以再打開一個(gè)新的命令行。注意:在輸入此命令之前先在任務(wù)管理器中結(jié)束mysqld.exe進(jìn)程,確保mysql服務(wù)器端已結(jié)束運(yùn)行。
4、然后直接輸入mysql,不需要帶任何登錄參數(shù)直接回車就可以登陸上數(shù)據(jù)庫。
5、輸入show databases; ? 可以看到所有數(shù)據(jù)庫說明成功登陸。
6、其中mysql庫就是保存用戶名的地方。輸入 use mysql; ? 選擇mysql數(shù)據(jù)庫。
7、show tables查看所有表,會(huì)發(fā)現(xiàn)有個(gè)user表,這里存放的就是用戶名,密碼,權(quán)限等等賬戶信息。
8、輸入select user,host,password from user; ? 來查看賬戶信息。
9、更改root密碼,輸入update user set password=password('123456') where user='root' and host='localhost';
10、再次查看賬戶信息,select user,host,password from user; ? 可以看到密碼已被修改。
11、退出命令行,重啟mysql數(shù)據(jù)庫,用新密碼嘗試登錄。
12、測(cè)試不帶密碼登錄mysql,發(fā)現(xiàn)還是能夠登陸上,但顯示數(shù)據(jù)庫時(shí)只能看到兩個(gè)數(shù)據(jù)庫了,說明重啟之后跳過密碼驗(yàn)證已經(jīng)被取消了。
13、重啟數(shù)據(jù)庫之后之所以不帶密碼任然能夠登錄是因?yàn)閿?shù)據(jù)庫里存在設(shè)無須口令的賬戶。
擴(kuò)展資料:
MySQL是一種開放源代碼的關(guān)系型數(shù)據(jù)庫管理系統(tǒng)(RDBMS),使用最常用的數(shù)據(jù)庫管理語言--結(jié)構(gòu)化查詢語言(SQL)進(jìn)行數(shù)據(jù)庫管理。
MySQL是開放源代碼的,因此任何人都可以在General Public License的許可下下載并根據(jù)個(gè)性化的需要對(duì)其進(jìn)行修改。
MySQL因?yàn)槠渌俣?、可靠性和適應(yīng)性而備受關(guān)注。大多數(shù)人都認(rèn)為在不需要事務(wù)化處理的情況下,MySQL是管理內(nèi)容最好的選擇。
1:使用SHOW語句找出在服務(wù)器上當(dāng)前存在的數(shù)據(jù)庫:
mysql SHOW DATABASES;
2:創(chuàng)建一個(gè)數(shù)據(jù)庫MYSQLDATA
mysql CREATE DATABASE MYSQLDATA;
3:選擇你所創(chuàng)建的數(shù)據(jù)庫
mysql USE MYSQLDATA; (按回車鍵出現(xiàn)Database changed 時(shí)說明操作成功!)
4:查看現(xiàn)在的數(shù)據(jù)庫中存在什么表
mysql SHOW TABLES;
5:創(chuàng)建一個(gè)數(shù)據(jù)庫表
mysql CREATE TABLE MYTABLE (name VARCHAR(20), sex CHAR(1));
6:顯示表的結(jié)構(gòu):
mysql DESCRIBE MYTABLE;
7:往表中加入記錄
mysql insert into MYTABLE values (”hyq”,”M”);
8:用文本方式將數(shù)據(jù)裝入數(shù)據(jù)庫表中(例如D:/mysql.txt)
mysql LOAD DATA LOCAL INFILE “D:/mysql.txt” INTO TABLE MYTABLE;
9:導(dǎo)入.sql文件命令(例如D:/mysql.sql)
mysqluse database;
mysqlsource d:/mysql.sql;
10:刪除表
mysqldrop TABLE MYTABLE;
11:清空表
mysqldelete from MYTABLE;
12:更新表中數(shù)據(jù)
mysqlupdate MYTABLE set sex=”f” where name=’hyq’;
參考資料來源:百度百科:MySQL數(shù)據(jù)庫
方法1 用SET PASSWORD命令
1
1、打開終端win+r輸入cmd回車即可打開;
2、通過mysql -u用戶名 -p指定root用戶登錄MySQL,輸入后回車會(huì)提示輸入密碼。
3、修改MySQL的root用戶密碼,格式:mysql set password for 用戶名@localhost = password('新密碼'); 例子:mysql set password for root@localhost = password('shapolang'); 上面例子將用戶root的密碼更改為shapolang?。?/p>
重新登錄,輸入新密碼shapolang就ok了;
END
方法2 用mysqladmin
1
1、打開終端win+r輸入cmd回車即可打開;
2、修改MySQL的root用戶密碼格式:mysqladmin -u用戶名 -p舊密碼 password 新密碼 例子:mysqladmin -uroot -pshapolang password 123456
上面例子將用戶root原來的密碼shapolang改為新密碼123456
重新登錄,輸入新密碼123456就ok了;
END
方法3 用UPDATE直接編輯user表
1
1、首先登錄MySQL。
2、 連接權(quán)限數(shù)據(jù)庫: use mysql; 。3、改密碼:update user set password=password("shapolang") where user="root";(別忘了最后加分號(hào)) 。 4、刷新權(quán)限(必須步驟):flush privileges;
重新登錄,輸入新密碼shapolang就ok了;
END
方法4 忘記root密碼的時(shí)候
1
1、關(guān)閉正在運(yùn)行的MySQL服務(wù)。
2、打開DOS窗口,轉(zhuǎn)到mysql\bin目錄。 3、 輸入mysqld --skip-grant-tables 回車。--skip-grant-tables 的意思是啟動(dòng)MySQL服務(wù)的時(shí)候跳過權(quán)限表認(rèn)證。 4、再開一個(gè)DOS窗口(因?yàn)閯偛拍莻€(gè)DOS窗口已經(jīng)不能動(dòng)了),輸入mysql回車,如果成功,將出現(xiàn)MySQL提示符 。 6、連接權(quán)限數(shù)據(jù)庫: use mysql; 。 7、改密碼:update user set password=password("root") where user="root";(別忘了最后加分號(hào)) 。 8、刷新權(quán)限(必須步驟):flush privileges; 。 9、退出 quit。
重啟mysql服務(wù),使用用戶名root和剛才設(shè)置的新密碼root登錄就ok了;