博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MySQL修改密码
阅读量:6434 次
发布时间:2019-06-23

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

1.设置root密码(root密码为空时)

1
mysqladmin -uroot password 
"new123"
;

2.修改mysql密码(3种方法)

1
2
3
4
1)mysqladmin -uroot -poldboy123 password 
"new123"
;
2)mysql>update mysql.user set password=password(
"oldboy123"
) where user=
'root' 
and 
host=
'localhost'
;
mysql>
flush 
privileges;
3)mysql> set password=password(
"123"
);

3.忘记密码

1
2
3
4
1)首先关闭mysql
2) 跳过验证启动 mysqld_safe --skip-grant-tables &
3)使用修改mysql密码的方式进行修改建议(第二种方法)
4)重新启动mysql

4.创建超级用户

1
2
mysql> grant all privileges on *.* to 
'system'
@
'localhost' 
identified by 
'oldboy123' 
with grant option;
mysql> 
flush 
privileges;

5.多实例mysql修改密码

1
mysqladmin -uroot -poldboy123 password 
"new123" 
-S /data/3306/mysql.sock

6.忘记密码

1
mysqld_safe --defaults-file=/data/3306/my.cnf --skip-grant-tables &

转载于:https://www.cnblogs.com/huashengxue/p/9578555.html

你可能感兴趣的文章
一起谈.NET技术,.NET异步编程:IO完成端口与BeginRead
查看>>
Python 3.2 beta 2 发布
查看>>
随机信号的傅里叶分析
查看>>
[转]ASP.NET Core 指定环境发布(hosting environment)
查看>>
WinForm读取指定的config文件的内容
查看>>
SqliteHelper整理(转载)
查看>>
Global.asax或IHttpModule实现屏蔽ip和图片防盗链
查看>>
SOCKET CLOSE_WAIT 搜集
查看>>
认识数据地图
查看>>
【Programming Clip】06、07年清华计算机考研上机试题解答(个别测试用例无法通过)...
查看>>
eval()用法
查看>>
尽力而为
查看>>
教你如何将UIImageView视图中的图片变成圆角
查看>>
pku 2635 The Embarrassed Cryptographer 数论——素数筛选法+模拟大数除法
查看>>
还有什么不能做?——细谈在C#中读写Excel系列文章之一
查看>>
[学习笔记]Hadoop 配置调试错误收集
查看>>
网络摘录
查看>>
ehcache + mysql例子与性能测试
查看>>
Java学习笔记50:JSONObject与JSONArray的使用
查看>>
linuxMint下安装ftp工具--filezilla
查看>>