1、
问题:
mysql5.7 zip 安装 install/remove of the service denied
解决:
cmd 窗口管理员身份运行即可
2、
问题:
windows server2016 压缩包安装mysql5.7.23(附提示丢失MSVCR120.dll的解决方案)
解决:
安装VC运行库。链接:https://blog.csdn.net/hwijew/article/details/83309279,
https://blog.csdn.net/weixin_42474227/article/details/80717163
3、
问题:
django.db.utils.operationalError 1130 ... not allowed to connect to this mysql server
解决:
执行 update user set host = '%' where user ='root'
将Host设置为通配符 %
。Host设置了“%”后便可以允许远程访问。链接:https://blog.csdn.net/h985161183/article/details/82218710
仅学习,侵删。