我将我的linux docker环境从我的mac移植到我的笔记本电脑上。我有2个docker镜像,一个是mysql:latest
数据库镜像,另一个是go:alpine
应用程序服务器镜像。
在我的mac上,我使用bash脚本将环境变量传递给app服务器,以将数据库连接字符串组成mysql。
连接字符串是:
root:password@tcp(mysql_host:3306)/dbname
当我在我的Mac上运行时,数据库连接成功,但不在我的PC上。
在Windows 10
上,我安装了Ubuntu
和Docker for Windows
。在bash
中,我已经安装了docker客户端,并且我可以通过设置DOCKER_HOST
环境变量来使用docker cli连接到我的Windows Docker主机。
我创建了一个自定义docker网络,我通过--network
标志传递给我的2个容器,这样他们就可以看到对方了,我已经确认他们确实能够解析他们的容器名称。
我的app服务器使用的连接字符串完全相同,但返回以下错误:
this authentication plugin is not supported
我的go代码中返回此错误的行是:
db, err = sql.Open("mysql", dbConnStr)
我错过了什么?什么认证插件?
以下是我的电脑上docker info
的输出:
Containers: 1
Running: 0
Paused: 0
Stopped: 1
Images: 27
Server Version: 18.04.0-ce
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 773c489c9c1b21a6d78b5c538cd395416ec50f88
runc version: 4fc53a81fb7c994640722ac585fa9ca548971871
init version: 949e6fa
Security Options:
seccomp
Profile: default
Kernel Version: 4.9.87-linuxkit-aufs
Operating System: Docker for Windows
OSType: linux
Architecture: x86_64
CPUs: 6
Total Memory: 3.837GiB
Name: linuxkit-00155d016401
ID: JXLB:YHLO:J6XO:H66P:X7LQ:RF2I:Z3AC:FPLY:OCLQ:DSYU:H4CR:W2DD
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): true
File Descriptors: 19
Goroutines: 36
System Time: 2018-04-23T06:06:31.2274774Z
EventsListeners: 1
Registry: https://index.docker.io/v1/
Labels:
Experimental: true
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
答案 0 :(得分:5)
Docker hub上的MySQL映像最近将更新的“最新”标记从5.7更改为8(2018/04/20),这有很多重大变化。使用“mysql:5.7”而不是“mysql”可以解决您的问题。