首頁 > 系統教程 > Linux > 主體

修改、破解 MariaDB資料庫 root 密碼

WBOY
發布: 2024-07-25 09:09:51
原創
851 人瀏覽過

修改、破解 MariaDB数据库 root 密码

修改mysql密碼有多種方案下面介紹2個

方案一
 # /usr/local/mysql/bin/mysqladmin -uroot -p password "New-password"
 Enter password: 【输入原有密码】 //输入后回车密码就修改成了New-password
登入後複製
方案二
 # mysql -uroot -p //回车登录mysql系统
 Enter password: 【输入原来的密码】
 MariaDB [(none)]> use mysql; //进入mysql数据库
 MariaDB [(none)]> update user set password=passworD("New-password") where user='root';
 MariaDB [(none)]> flush privileges; //刷新数据库
 MariaDB [(none)]> exit; //退出
登入後複製

修改完成!

如果你不記得之前的舊密碼,那麼只能嘗試破解,破解方案以下:

前置條件:必須擁有伺服器最高管理員(root)權限。

 # systemctl stop mysql
 # /usr/local/mysql/bin/mysqld_safe --skip-grant-tables &
登入後複製

“&” 表示在後台運行,若不再後台運行,就再打開一個終端。

# mysql
 MariaDB [(none)]> use mysql;
 MariaDB [(none)]> UPDATE user SET password=password("New-password") WHERE user='root';
 MariaDB [(none)]> flush privileges;
 MariaDB [(none)]> exit;
登入後複製

破解完成!

以上是修改、破解 MariaDB資料庫 root 密碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:linuxprobe.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板