ETCD 單機啟動

2021-09-02 21:18:08 字數 1417 閱讀 8713

etcd就兩個可執行檔案(截至到3.0.15前)。

注:etcd可以集群安裝,在這裡只想做乙個單機測試,所以只是啟動乙個節點就可以。

1. 解壓,並將檔案放入系統路徑中:

tar zxvf etcd-v3.0.15-linux-amd64.tar.gz

cp etcd /usr/bin/

cp etcdctl /usr/bin/

2. 建立乙個服務描述檔案,放入systemd的服務目錄下

cat /usr/lib/systemd/system/etcd.service

[unit]

description=etcd server

after=network.target

[service]

type=******

workingdirectory=/var/lib/etcd/

environmentfile=-/etc/etcd/etcd.conf

execstart=/usr/bin/etcd

[install]

wantedby=multi-user.target

3. etcd的配置

4. 給etcd建立乙個工作目錄:

[root@localhost etcd]# mkdir /var/lib/etcd

5. 啟動etcd,並測試

etcd 啟動分析 Etcd單機啟動與簡單操作

推薦把解壓的etcd資料夾放在 usr local bin 目錄 2,啟動單機etcd服務 nohup etcd listen client urls advertise client urls log etcd.log 2 1 listen client urls 用於指定etcd和客戶端的連線埠...

etcd 啟動分析 Etcd的基本使用

etcd 是 coreos 團隊於 2013 年 6 月發起的開源專案,它的目標是構建乙個高可用的分布式鍵值 key value 資料庫,基於 go 語言實現,內部採用 raft 協議作為一致性演算法。etcd目前預設使用 2379 埠提供 http api 服務。安裝進入官網 進入目錄啟動etcd...

zk單機啟動

1.這裡用的是最新版本的zookeeper3.6.0 1.首先解壓 tar zxf apache zookeeper 3.6.0 bin.tar.gz 2.修改conf目錄 cp zoo sample.cfg zoo.cfg vim zoo.cfg the number of millisecond...