博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux mariadb忘记密码,Linux上mariadb重置密码
阅读量:6453 次
发布时间:2019-06-23

本文共 1421 字,大约阅读时间需要 4 分钟。

如果你Linux上的mariadb数据库密码忘记了,你可以这样来重置密码。

[root@node1 ~]# mysql -uroot -p

ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

目标:

重置Mariadb数据库密码

过程:

修改配置文件:

[root@node1 ~]# vi /etc/my.cnf

[mysqld]

skip-grant-tables(添加这句,跳过权限列表)

重启mariadb:

[root@node1 ~]# systemctl restart mariadb

用mysql命令就可以直接进入数据库:

[root@node1 ~]# mysql

Welcome to the MariaDB monitor. Commands end with ; or \g.

Your MariaDB connection id is 2

Server version: 10.1.17-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)]>

修改root用户密码:

MariaDB [(none)]> use mysql;

Reading table information for completion of table and column names

You can turn off this feature to get a quicker startup with -A

Database changed

MariaDB [mysql]> update user set Password=Password("111111") where user="root";

Query OK, 4 rows affected (0.00 sec)

Rows matched: 4 Changed: 4 Warnings: 0

验证:

去掉skip-grant-tables,重启maridb:

[root@node1 ~]# systemctl restart mariadb

[root@node1 ~]# mysql -uroot -p111111

Welcome to the MariaDB monitor. Commands end with ; or \g.

Your MariaDB connection id is 218

Server version: 10.1.17-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)]> 成功

转载地址:http://unyzo.baihongyu.com/

你可能感兴趣的文章
第十届蓝桥杯B组C++题目详解和题型总结
查看>>
树的存储结构2 - 数据结构和算法42
查看>>
简单理解函数回调——同步回调与异步回调
查看>>
Android 多个Activity 跳转及传参
查看>>
anroid 广播
查看>>
AJAX POST&跨域 解决方案 - CORS
查看>>
关于最小生成树中的kruskal算法中判断两个点是否在同一个连通分量的方法总结...
查看>>
【译】Linux系统和性能监控(4)
查看>>
开篇,博客的申请理由
查看>>
点滴积累【C#】---C#实现上传word以流形式保存到数据库和读取数据库中的word文件。...
查看>>
Ubuntu常用笔记
查看>>
Token和session 详解
查看>>
JMeter IP欺骗压测
查看>>
Serializers 序列化组件
查看>>
最简单的RPC框架实现
查看>>
Servlet 技术全总结 (已完成,不定期增加内容)
查看>>
[JSOI2008]星球大战starwar BZOJ1015
查看>>
CountDownLatch与thread-join()的区别
查看>>
linux下MySQL安装登录及操作
查看>>
centos 7 部署LDAP服务
查看>>