MySQL使用中遇到的问题(汇总)

MySQL使用

Posted by MetaNetworks on January 24, 2019
本页面总访问量

MySQL 使用中遇到的问题

  • MySQL外网无法访问

  • MySQL无法远程登录已知密码的root账户,依然出现

    ERROR 1698 (28000): Access denied for user 'root'@'localhost'

    • 原因plugin模块非’native_password’,可能是更安全吧

      • 更改plugin类型并且重新设置密码

        1
        2
        
        #实现代码
        update user set authentication_string =password('你的密码'),plugin='msyql_native_password' where user='root'
        
  • MySQL 用户没有权限

    • 赋予权限 (grant,revoke)

      • 1
        
        grant/revoke xxx(all为所有) privileges [on xx.xx(可精确到数据库的表)] where user='用户名'; 
        
  • MySQL不支持中文索引

    • 使用mysqlcft

其他参考: