| 本文档以实战的形式介绍破解 MariaDB5.5 数据库的 root 登录密码 |
忘记 root 登录密码
[root@localhost ~]# mysql -uroot -p123 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
查找并运行 mysqld_safe 程序绕开 MariaDB5.5 数据库密码验证
[root@localhost ~]# find / -name mysqld_safe /usr/bin/mysqld_safe [root@localhost ~]# /usr/bin/mysqld_safe --skip-grant-tables &
直接使用 mysql 命令登录 MariaDB5.5 数据库并修改 root 登录密码
[root@localhost ~]# mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 1 Server version: 5.5.52-MariaDB MariaDB Server Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> sh

本文详细介绍了当忘记MariaDB5.5数据库root密码时,如何通过运行mysqld_safe程序跳过密码验证,直接登录数据库修改root密码,并提供了使用新密码登录及验证的过程。
最低0.47元/天 解锁文章
1315

被折叠的 条评论
为什么被折叠?



