ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC] ## # 启动etcd(单服务) ``` docker run -d -p 4001:4001 -p 2380:2380 -p 2379:2379 \ --name etcd elcolio/etcd:latest \ -name etcd0 \ -advertise-client-urls http://localhost:2379,http://localhost:4001 \ -listen-client-urls http://0.0.0.0:2379,http://0.0.0.0:4001 \ -initial-advertise-peer-urls http://localhost:2380 \ -listen-peer-urls http://0.0.0.0:2380 \ -initial-cluster-token etcd-cluster-1 \ -initial-cluster etcd0=http://localhost:2380 \ -initial-cluster-state new ``` # 在docker中运行(集群)