一、下载consul
下载链接:Install | Consul | HashiCorp Developer
启动:
这里以windows系统为例,需要在consul.exe目录执行
#查看版本号:
consul -version
#启动命令:
consul agent -dev
访问地址:http://localhost:8500
二、持久化
配置consul持久化就需要将配置文件存储到磁盘中,并且将consul添加到系统服务
1、创建配置文件存储文件夹
在consul.exe同级目录新建data文件夹
2、编写bat文件
将consul配置成系统服务,以后台的方式运行,指定绑定的地址,并且指定配置文件存放目录,服务自动启动
consul_start.bat
@echo.服务启动......
@echo off
@sc create Consul binpath= "C:\Users\24248\Desktop\codeSoftware\consul\consul.exe agent -server -ui -bind=127.0.0.1 -client=0.0.0.0 -bootstrap-expect 1 -data-dir C:\Users\24248\Desktop\codeSoftware\consul\data"
@net start Consul
@sc config Consul start= AUTO
@echo.Consul start is OK......success
@pause