史上最简单的 SpringCloud 教程 | 第十四篇: 服务注册(consul)
日期: 2017-04-19 分类: 跨站数据 270次阅读
转载请标明出处:
原文首发于:https://www.fangzhipeng.com/springcloud/2017/06/14/sc14-consul.html
本文出自方志朋的博客
个人博客纯净版:https://www.fangzhipeng.com/springcloud/2017/06/14/sc14-consul.html
这篇文章主要介绍 spring cloud consul 组件,它是一个提供服务发现和配置的工具。consul具有分布式、高可用、高扩展性。
一、consul 简介
consul 具有以下性质:
- 服务发现:consul通过http 方式注册服务,并且服务与服务之间相互感应。
- 服务健康监测
- key/value 存储
- 多数据中心
consul可运行在mac windows linux 等机器上。
二、consul安装
linux
$ mkdir -p $GOPATH/src/github.com/hashicorp && cd $!
$ git clone https://github.com/hashicorp/consul.git
$ cd consul
$ make bootstrap
$ make bootstrap
windows下安装: 除特别声明,本站所有文章均为原创,如需转载请以超级链接形式注明出处:SmartCat's Blog
见
精华推荐