- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
1. 修改mysql配置文件
编辑配置文件
vim /etc/my.cnf
按i在[mysqld]中添加skip-grant-tables,即跳过权限认证
skip-grant-tables
按esc后输入:wq保存退出
2. 重启mysql
输入命令重启
service mysqld restart
3. 登录mysql
mysql -u root -p
无需输入密码直接回车进入mysql
4. 修改mysql的root密码
选择mysql数据库
use mysql;
修改root密码 (密码需要满足mysql的密码策略,见底部)
update user set authentication_string=password('你的密码') where user='root';
刷新权限
flush privileges;
退出mysql
quit;
5. 修改/etc/my.cnf 删除skip-grant-tables
6. 重启mysql
service mysqld restart
7. 再次登录mysql,出现错误提示
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
修改密码即可
set password=password("密码");
密码策略如下:
至少8位
至少包含1位特殊字符
至少包含大小写混合
至少1位数字
如果出现1819错误,代表密码不符合要求
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
售前咨询
售后咨询
备案咨询
二维码
TOP