Authentication plugin 'caching_sha2_password' cannot be loaded

前端 未结 30 3171
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-22 05:19

I am connecting MySQL - 8.0 with MySQL Workbench and getting the below error:

Authentication plugin \'caching_sha2_password\' cannot be loaded: dlop

30条回答
  •  失恋的感觉
    2020-11-22 06:05

    If you are getting this error on GitLab CI like me: Just change from latest to 5.7 version ;)

    # .gitlab-ci.yml
    
    rspec:
      services:
        # - mysql:latest (I'm using latest version and it causes error)
        - mysql:5.7 #(then I've changed to this specific version and fix!)
    

提交回复
热议问题