[轉]Mariadb的root密碼忘記後的解決方案

來源:互聯網
上載者:User

標籤:read   node   art   lib   密碼串連   pre   exec   ;;   參考   

環境背景:CentOS 7.2

 

 

一、編輯/usr/lib/systemd/system/mariadb.service 檔案,在Service段中添加
123456789101112 [Service]Type=simpleUser=mysqlGroup=mysqlUser=mysqlGroup=mysql ExecStartPre=/usr/libexec/mariadb-prepare-db-dir %n# Note: we set --basedir to prevent probes that might trigger SELinux alarms,# per bug #547485#在Server段中的ExecStart出添加如下ExecStart=/usr/bin/mysqld_safe --basedir=/usr --skip-grant-tables --skip-networking

二、鍵入systemctl daemon-reload使其立即生效

1 [[email protected] ~]# systemctl daemon-reload
三、重新啟動mariadb服務並使用mysql聯入
1234567891011 [[email protected] ~]# systemctl restart mariadb.service[[email protected] ~]# mysqlWelcome to the MariaDB monitor.  Commands end with ; or \g.Your MariaDB connection id is 2Server version: 5.5.44-MariaDB MariaDB Server Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others. Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement. MariaDB [(none)]>
四、更改root使用者的密碼

  

123456 MariaDB [(none)]> UPDATE mysql.user SET Password=PASSWORD(‘xiaoshui‘) WHERE user=‘root‘ and host=‘localhost‘;Query OK, 0 rows affected (0.00 sec)Rows matched: 1  Changed: 0  Warnings: 0 MariaDB [(none)]> FLUSH PRIVILEGES;Query OK, 0 rows affected (0.00 sec)
五、退出並關閉mariadb服務並把/usr/lib/systemd/system/mariadb.service檔案中剛剛添加的那兩行移除
12 ExecStart=/usr/bin/mysqld_safe --basedir=/usr ExecStartPost=/usr/libexec/mariadb-wait-ready $MAINPID
六、啟動mariadb服務,並使用新設定的密碼串連
1234567891011 [[email protected] ~]# mysql -u root -h localhost -pEnter password: Welcome to the MariaDB monitor.  Commands end with ; or \g.Your MariaDB connection id is 4Server version: 5.5.44-MariaDB MariaDB Server Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others. Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement. MariaDB [(none)]>

 

 

 

參考:http://dashui.blog.51cto.com/11254923/1877042

[轉]Mariadb的root密碼忘記後的解決方案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.