摘要:
无法安装,使用命令apt-get update升级一下apt-get 安装过程不提示设置密码,前往/etc/mysql/debian.cnf里面查看 重新设置root密码: 1.use mysql; 2. update user set axxx = password("新密码") where us 阅读全文
摘要:
问题描述:使用Sequelize CLI链接数据库的时候报如图错。 解决办法:新建数据库用户,并且分配对应的数据库的权限。 ```mysql CREATE USER 'victor'@'localhost' IDENTIFIED BY '123456'; grant all on *.* to 'v 阅读全文