We’ve just recently got into trouble with all our tests because of an error when running mysql --host 127.0.0.1
:
ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded: Error loading shared library /usr/lib/mysql/plugin/caching_sha2_password.so: No such file or directory Exited with code 1
Parts of our config.yml:
jobs:
build:
environment:
docker:
- image: circleci/mysql:5.5
- image: rabbitmq:3-alpine
...
working_directory: ~/webapp
steps:
...
- run:
name: Prepare DB
command: echo "create database" | mysql --host 127.0.0.1
This did only occured the last couple of days, and we did not make any changes related to circle or mysql.
Any idea how to fix this?