摘要:
#使用root用户进入数据库 输入上面复制的root密码 mysql -u root -p #使用mysql use mysql #更新root用户权限,“%”指的是所有地址都可以访问 update user set Host='%' where User='root'; #最后一步,刷新权限即可 阅读全文
摘要:
remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.(大家也可以看一下,是github要求使用双因子验 阅读全文
摘要:
为php打了redis扩展,宝塔安装了redis7,运行php项目报错:WRONGPASS invalid username-password pair or user is disabled.反复检查用户名密码没有问题,后来偶然发现: 将php.ini中的禁用函数putenv删除,问题解决 阅读全文