美文网首页
阿里云RDS恢复注意事项整理

阿里云RDS恢复注意事项整理

作者: 左子穆 | 来源:发表于2020-07-14 19:16 被阅读0次

    通过阿里云帮助文档完成迁移迁移导入。
    参考:https://help.aliyun.com/knowledge_detail/41817.html

    注意:
    1、需要安装与阿里云相同版本的mysql数据。
    2、检查当前安装mysql数据存取数据位置。登录mysql进行操作
    show global variables like "%datadir%";
    show variables like "%char%";
    3、重置密码(不知道原来密码情况)service mysqld stop,/etc目录下,运行命令:vi /etc/my.cnf,编辑文件, 在文件的[mysqld]标签下添加一句:skip-grant-tables 方便可以账号不使用密码登陆。直接登陆操作修改root密码。(参考:https://www.cnblogs.com/black-fact/p/11613361.html
    4、修改密码(版本mysql5.7):update mysql.user set authentication_string=password('你的密码') where user='aliyun_root';
    5、修改密码出现Unknown trigger has an error in its body: 'Unknown system variable 'maintain_user_list''(参考:https://blog.csdn.net/best_luxi/article/details/107152085 导致密码修改不成功问题)

    6、刷数据出现“ERROR 1105 (HY000): Unknown error”参考:https://blog.csdn.net/cainiao1412/article/details/106101377/

    7、 需要允许root可以远程访问,修改数据root登录限制

    相关文章

      网友评论

          本文标题:阿里云RDS恢复注意事项整理

          本文链接:https://www.haomeiwen.com/subject/fenfhktx.html