ubuntu安装etcd

  • Post author:
  • Post category:其他


  1. 下载
wget https://github.com/etcd-io/etcd/releases/download/v3.3.12/etcd-v3.3.12-linux-amd64.tar.gz
  1. 解压
tar zxvf etcd-v3.3.12-linux-amd64.tar.gz
  1. 进入
cd etcd-v3.3.12-linux-amd64
  1. 将启动文件和命令管理文件拷贝到/usr/local下
cp etcd /usr/local/bin
cp etcdctl /usr/local/bin
cd ..
cp -r etcd-v3.2.5-linux-amd64 /usr/local/etcd
  1. 启动
etcd -listen-client-urls="http://0.0.0.0:2379" --advertise-client-urls="http://0.0.0.0:2379"
  1. 其他服务器请求,看是否启动成功
curl -L  http://47.xx.xx.xx:2379/version

如果出现以下则说明启动成功

{"etcdserver":"3.3.12","etcdcluster":"3.3.0"}

参考文章:

文章地址



版权声明:本文为qq_42874635原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。