• 2022年11月2日

Windows安装Consul并配置为Windows服务

1、Consul下载:https://developer.hashicorp.com/consul/downloads 选择Windows版本下载 2、解压到特定目录,例如:D:\Consul\ 3、配置环境变量Path增加解压的路径,例如: D:\Consul\ 4、打开cmd,运行 sc create “Consul” start=”auto” binPath=”consul agent -dev” 5、【可选】重启服务器 6、打开服务管理,查看Consul是否正常启动,如果正常启动表示已成功配置 访问Consul:http://localhost:8500

详细内容