Skip to content

Instantly share code, notes, and snippets.

@ralphgj
ralphgj / introrx.md
Created January 9, 2017 02:20 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@ralphgj
ralphgj / gist:b28e3167c240e3d0c8442d7216342110
Created October 28, 2016 13:50 — forked from JagoWang/gist:4544489
mysql重置root密码及相关问题
1、编辑MySQL配置文件:my.ini
一般在MySQL安装目录下有my.ini即MySQL的配置文件。
此配置文件最后添加一行:
skip-grant-tables
保存退出编辑。
2、然后重启MySQL服务
在命令行下执行:
net stop MySQL
net start MySQL