etcd: mac 环境部署

部署etcd

官网:https://etcd.io/docs/v3.5/install/

release版本链接:https://github.com/etcd-io/etcd/releases/

下载部署文件

参考release版本链接中的说明,拼装相应版本的下载地址:

复制代码
wget https://github.com/etcd-io/etcd/releases/download/{ETCD_VER}/etcd-{ETCD_VER}-darwin-amd64.zip

如v3.5.12 版本:

复制代码
wget https://github.com/etcd-io/etcd/releases/download/v3.5.12/etcd-v3.5.12-darwin-amd64.zip

启动服务

将zip包解压出来,进入目录查看文件。

base 复制代码
localhost:etcd xxx$ unzip etcd-v3.5.12-darwin-amd64.zip
Archive:  etcd-v3.5.12-darwin-amd64.zip
   creating: etcd-v3.5.12-darwin-amd64/
  inflating: etcd-v3.5.12-darwin-amd64/README.md
  inflating: etcd-v3.5.12-darwin-amd64/READMEv2-etcdctl.md
  inflating: etcd-v3.5.12-darwin-amd64/etcdutl
  inflating: etcd-v3.5.12-darwin-amd64/etcdctl
   creating: etcd-v3.5.12-darwin-amd64/Documentation/
  inflating: etcd-v3.5.12-darwin-amd64/Documentation/README.md
   creating: etcd-v3.5.12-darwin-amd64/Documentation/dev-guide/
   creating: etcd-v3.5.12-darwin-amd64/Documentation/dev-guide/apispec/
   creating: etcd-v3.5.12-darwin-amd64/Documentation/dev-guide/apispec/swagger/
  inflating: etcd-v3.5.12-darwin-amd64/Documentation/dev-guide/apispec/swagger/v3election.swagger.json
  inflating: etcd-v3.5.12-darwin-amd64/Documentation/dev-guide/apispec/swagger/rpc.swagger.json
  inflating: etcd-v3.5.12-darwin-amd64/Documentation/dev-guide/apispec/swagger/v3lock.swagger.json
  inflating: etcd-v3.5.12-darwin-amd64/README-etcdutl.md
  inflating: etcd-v3.5.12-darwin-amd64/README-etcdctl.md
  inflating: etcd-v3.5.12-darwin-amd64/etcd
localhost:etcd xxx$ cd etcd-v3.5.12-darwin-amd64
localhost:etcd-v3.5.12-darwin-amd64 xxx$ ls -l
total 123296
drwxr-xr-x@ 4 zcy  staff       128  1 31 18:36 Documentation
-rw-r--r--@ 1 zcy  staff     42066  1 31 18:36 README-etcdctl.md
-rw-r--r--@ 1 zcy  staff      7359  1 31 18:36 README-etcdutl.md
-rw-r--r--@ 1 zcy  staff      9394  1 31 18:36 README.md
-rw-r--r--@ 1 zcy  staff      7896  1 31 18:36 READMEv2-etcdctl.md
-rwxr-xr-x@ 1 zcy  staff  26570464  1 31 18:36 etcd
-rwxr-xr-x@ 1 zcy  staff  19811888  1 31 18:36 etcdctl
-rwxr-xr-x@ 1 zcy  staff  16669696  1 31 18:36 etcdutl

运行启动命令

bash 复制代码
localhost:etcd-v3.5.12-darwin-amd64 xxx$ nohup ./etcd &
[1] 53092
localhost:etcd-v3.5.12-darwin-amd64 xxx$ appending output to nohup.out

命令行使用

  1. put

    bash 复制代码
    localhost:etcd-v3.5.12-darwin-amd64 xxx$ ./etcdctl put name cloud
    OK
  2. get

    bash 复制代码
    localhost:etcd-v3.5.12-darwin-amd64 xxx$ ./etcdctl get name
    name
    cloud
  3. del

    bash 复制代码
    localhost:etcd-v3.5.12-darwin-amd64 xxx$ ./etcdctl del name
    1
  4. watch
    先执行watch,此时命令行会挂起, 等待watch的信息返回

    bash 复制代码
    localhost:etcd-v3.5.12-darwin-amd64 xxx$ ./etcdctl watch name

    另外再开一个命令行窗口,执行put 命令,watch窗口会显示put的信息
    新窗口:

    bash 复制代码
    localhost:etcd-v3.5.12-darwin-amd64 xxx$ ./etcdctl put name cloud
    OK

    watch窗口:

    bash 复制代码
    localhost:etcd-v3.5.12-darwin-amd64 xxx$ ./etcdctl watch name
    PUT
    name
    cloud

    新窗口`再执行del命令:

    bash 复制代码
    localhost:etcd-v3.5.12-darwin-amd64 xxx$ ./etcdctl del name
    1

    watch窗口也会显示del信息:

    bash 复制代码
    localhost:etcd-v3.5.12-darwin-amd64 xxx$ ./etcdctl watch name
    PUT
    name
    cloud
    DELETE
    name
  5. lease

    bash 复制代码
    localhost:etcd-v3.5.12-darwin-amd64 xxx$ ./etcdctl lease grant 120
    lease 694d8dd00386a80a granted with TTL(120s)
    localhost:etcd-v3.5.12-darwin-amd64 xxx$ ./etcdctl put name cloud --	lease="694d8dd00386a80a"
    OK

brew 安装etcd

安装etcd

bash 复制代码
brew install etcd

运行 etcd

安装完后,会有相关提示,推荐使用 brew services 来管理这些应用。

brew services 常用的操作:

复制代码
# 查看当前应用列表
brew services list

# 启动某个应用
brew services start {serviceName}

# 停止某个应用
brew services stop {serviceName}

以etcd为例:

bash 复制代码
#安装etcd 
brew install etcd

#启动etcd
brew services start {serviceName}
相关推荐
ReadThroughLife5 小时前
【已解决】MACOS M4 芯片使用 Docker Desktop 工具安装 MICROSOFT SQL SERVER
microsoft·macos·docker·容器
獨枭16 小时前
配置 macOS 上的 Ruby 开发环境
开发语言·macos·ruby
库奇噜啦呼21 小时前
push [特殊字符] present
macos·ios·cocoa
安和昂1 天前
【iOS】多线程NSOperation,NSOperationQueue
macos·ios·cocoa
咕噜签名分发冰淇淋1 天前
Flutter 打包 iOS 苹果 IPA 应用有哪些优势?如何实现?
macos·objective-c·cocoa
st紫月1 天前
用虚拟机安装macos系统之后进入Boot Manager页面
macos
tonngw1 天前
【Mac 从 0 到 1 保姆级配置教程 16】- Docker 快速安装配置、常用命令以及实际项目演示
macos·docker·容器·开源·github·docker desktop·orbstack
ItisNagatoYuki2 天前
Mac M芯片 RAG 极简流程 安装 ragflow + LM studio
macos
云攀登者-望正茂2 天前
如何在mac上安装podman
macos·podman
江梦寻2 天前
MacOS下Homebrew国内镜像加速指南(2025最新国内镜像加速)
开发语言·后端·python·macos·架构·策略模式