真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Mysql密碼重置方法介紹

本文主要給大家介紹MySQL密碼重置方法,文章內(nèi)容都是筆者用心摘選和編輯的,具有一定的針對(duì)性,對(duì)大家的參考意義還是比較大的,下面跟筆者一起了解下Mysql密碼重置方法吧。 

10年積累的成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問(wèn)題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先制作網(wǎng)站后付款的網(wǎng)站建設(shè)流程,更有察哈爾右翼后免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。

  • Step # 1: Stop the MySQL server process.
  • Step # 2: Start the MySQL (mysqld) server/daemon process with the –skip-grant-tables option so that it will not prompt for password.
  • Step # 3: Connect to mysql server as the root user.
  • Step # 4: Setup new mysql root account password i.e. reset mysql password.
  • Step # 5: Exit and restart the MySQL server.

ok,五步,開始!

Step # 1 : 停止sql服務(wù)

/etc/init.d/mysql stop

輸出 Stopping MySQL database server: mysqld.

Step # 2: 啟動(dòng)mysql服務(wù)鏡像

mysqld_safe --skip-grant-tables &

輸出
Starting mysqld daemon with databases from /var/lib/mysql
mysqld_safe

Step # 3: 以mysql服務(wù)的方式去鏈接數(shù)據(jù)庫(kù)

mysql -u root

輸出顯示
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1 to server version: 4.1.15-Debian_1-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>

Step # 4: 為root用戶設(shè)置新的密碼

mysql> use mysql;
mysql> update user set password=PASSWORD("你的密碼") where User='root';
mysql> flush privileges;
mysql> quit

Step # 5: 啟動(dòng)mysql服務(wù)

/etc/init.d/mysql stop

Stopping MySQL database server: mysqld
STOPPING server from pid file /var/run/mysqld/mysqld.pid
mysqld_safe[6186]: ended
[1]+  Done                    mysqld_safe --skip-grant-tables

Step # 6: 驗(yàn)證

 /etc/init.d/mysql start
 mysql -u root -p

輸入這條命令按enter鍵后再輸入密碼,就能進(jìn)去數(shù)據(jù)庫(kù)啦!

reference:
https://www.cyberciti.biz/tips/recover-mysql-root-password.html

看完以上關(guān)于Mysql密碼重置方法,很多讀者朋友肯定多少有一定的了解,如需獲取更多的行業(yè)知識(shí)信息 ,可以持續(xù)關(guān)注我們的行業(yè)資訊欄目的。


網(wǎng)頁(yè)名稱:Mysql密碼重置方法介紹
URL分享:http://weahome.cn/article/jhhppp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部