【安装etcd】

mac电脑安装etcd

1、 确定 brew 是否有 etcd 包:
brew search etcd

2、安装
brew install etcd

3、运行 etcd
运行 brew services list, 可以看到相关应用的状况

brew services 常用的操作

# 启动某个应用,这里用 etcd 做演示
brew services start etcd
# 停止某个应用
brew services stop etcd
# 查看当前应用列表
brew services list

4、验证etcd是否正确的启动
etcdctl endpoint health

你可能感兴趣的:(【安装etcd】)