docker pull seataio/seata-server:1.6.1
数据库脚本:
incubator-seata/script/server/db at master · apache/incubator-seata · GitHub
#先启动服务
docker run -d --name seata -p 8091:8091 -p 7091:7091 seataio/seata-server:1.6.1
#将配置文件拷贝出来
docker cp seata:/seata-server/resources /data/seata
#修改application.yml
# Copyright 1999-2019 Seata.io Group.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.server:port: 7091spring:application:name: seata-serverlogging:config: classpath:logback-spring.xmlfile:path: ${user.home}/logs/seataextend:logstash-appender:destination: 127.0.0.1:4560kafka-appender:bootstrap-servers: 127.0.0.1:9092topic: logback_to_logstashconsole:user:username: seatapassword: seataseata:config:# support: nacos, consul, apollo, zk, etcd3type: nacosnacos:server-addr: 120.46.162.36:8848 # nacos的访问地址,因为是在docker中,ip地址改为宿主机地址namespace:group: SEATA_GROUP # nacos的分组username: nacos # nacos的用户名password: dhc@2023Qwe! # nacos的密码context-path:##if use MSE Nacos with auth, mutex with username/password attribute#access-key:#secret-key:data-id: seata.properties # nacos中的配置文件名称registry:# support: nacos, eureka, redis, zk, consul, etcd3, sofatype: nacosnacos:application: seata-server # seata启动后在nacos的服务名server-addr: 120.46.162.36:8848 # nacos的访问地址,因为是在docker中,ip地址改为宿主机地址group: SEATA_GROUP # nacos的分组namespace:cluster: default # 这个歌参数在每个微服务seata时会用到username: nacos # nacos的用户名password: dhc@2023Qwe! # nacos的密码context-path:##if use MSE Nacos with auth, mutex with username/password attribute#access-key:#secret-key:store: # support: file 、 db 、 redismode: dbdb:datasource: druiddb-type: mysqldriver-class-name: com.mysql.jdbc.Driverurl: jdbc:mysql://120.46.162.36:13306/seata?characterEncoding=utf8&connectTimeout=10000&socketTimeout=30000&autoReconnect=true&useUnicode=true&useSSL=falseuser: rootpassword: i379aBcpmin-conn: 10max-conn: 100global-table: global_tablebranch-table: branch_tablelock-table: lock_tabledistributed-lock-table: distributed_lockquery-limit: 1000max-wait: 5000
# server:
# service-port: 8091 #If not configured, the default is '${server.port} + 1000'security:secretKey: SeataSecretKey0c382ef121d778043159209298fd40bf3850a017tokenValidityInMilliseconds: 1800000ignore:urls: /,/**/*.css,/**/*.js,/**/*.html,/**/*.map,/**/*.svg,/**/*.png,/**/*.ico,/console-fe/public/**,/api/v1/auth/login
在nacos中创建seata.properties
store.mode=db
store.db.datasource=druid
store.db.dbType=mysql
store.db.driverClassName=com.mysql.cj.jdbc.Driver
store.db.url=jdbc:mysql://120.46.162.36:13306/seata?useUnicode=true
store.db.user=root
store.db.password=i379aBcp
store.db.minConn=5
store.db.maxConn=30
store.db.globalTable=global_table
store.db.branchTable=branch_table
store.db.queryLimit=100
store.db.lockTable=lock_table
store.db.maxWait=5000
docker stop seata
docker rm seata
docker run -d --name seata \
-p 8091:8091 \
-p 7091:7091 \
-v /data/seata/resources:/seata-server/resources \
seataio/seata-server:1.6.1