-
Notifications
You must be signed in to change notification settings - Fork 8.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
关于seata-server的docker镜像 #7014
Comments
这里我的server镜像从seataio/seata-server:1.8.0.1升级到apache/seata-server:2.2.0,有如下报错:
这是我的启动配置: 我看到了类似的issuce:https://github.com/apache/incubator-seata/issues/6760,看起来这个问题已经修复,我是需要做哪些更新动作吗? |
新的镜像里面没有内置 mysql 驱动了,需要自己打进去或者挂载进去,这是我用的一个 dockerfile FROM apache/seata-server:2.2.0
# 复制本地的 MySQL 驱动
COPY mysql-connector-java-8.0.26.jar /seata-server/libs
WORKDIR /seata |
我需要在云上部署,不支持简单的映射挂载,没法上传比较大的文件,最好还是看看官方能不能直接解决这个问题吧。 |
Due to license issues, the seata-server cannot include the MySQL driver. |
因为 MySQL 的 license 问题,估计以后的版本都不会内置了。 |
明白了多谢 |
好的多谢 |
即使是在2.3版本, 放在/lib/jdbc/、/seata-server/libs/jdbc/ 也是没用的,必需放在/seata-server/libs/下。 |
Hi 关于seata的版本问题有两个疑问想请教一下
1.想请教一下客户端sdk的版本适合seata-server的版本想对应的吗?
比如我使用的是seata-spring-boot-starter:2.1.0是否配套的server是需要选择2.1.0版本对吗?
2.关于seata-server docker镜像
在docker仓库目前看到的镜像源似乎有两个seataio/seata-server以及apache/seata-server,请问是以apache/seata-server为准是吗?
seataio/seata-server这个我看最新更新的镜像反而是1.8.0.1版本,2.0.0的反而一年前就更新了。
The text was updated successfully, but these errors were encountered: