Docker-Download-Image
docker pull mysql docker images
Container erstellen
docker run -d -e MYSQL_ROOT_PASSWORD=root --name mysql57 -v /usr/local/docker_mysql/57/data/mysql:/var/lib/mysql -p 3306:3306 mysql --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --lower_case_table_names=1 docker exec -it mysql57 bash
Wenn beim Herstellen einer Verbindung zu MySQL durch Docker ein Fehler auftritt:
ERROR 2059 (HY000): Authentication plugin caching_sha2_password’ cannot be loaded
Lösung
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'root'; ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root'; SELECT plugin FROM mysql.user WHERE User = 'root';
Stopp
docker stop mysql
Starten
docker start msyql
Empfohlen: „MySQL-Video-Tutorial“
Das obige ist der detaillierte Inhalt vonSo starten Sie MySQL im Docker-Container auf einem MAC-Computer. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!