consul
Posted 六石
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了consul相关的知识,希望对你有一定的参考价值。
consul
作用
安装
- ubuntu安装:
命令行工具
consul agent -dev 启动代理(单独一个命令行保证服务一直启动中);
ctrl + c 关闭代理
consul members 查看集群成员
curl localhost:8500/v1/catalog/nodes 对象形式输出集群成员详细信息
sudo mkdir /etc/consul.d 创建consul配置文件夹
echo ‘{"service": {"name": "web", "tags": ["rails"], "port": 80}}‘ \
| sudo tee /etc/consul.d/web.json 输入配置信息到consul.d文件夹下的web.json文件中
consul agent -dev -config-dir=/etc/consul.d 根据配置文件启动代理
[[email protected] ~]$ consul agent -server -bootstrap-expect 2 -data-dir /tmp/consul -bind=192.168.1.11 -node=server01
[[email protected] ~]$ consul agent -server -bootstrap-expect 2 -data-dir /tmp/consul -bind=192.168.1.12 -node=server02
[[email protected] ~]$ consul agent -server -bootstrap-expect 2 -data-dir /tmp/consul -bind=192.168.1.13 -node=server03
以上是关于consul的主要内容,如果未能解决你的问题,请参考以下文章
2-5 利用RestTemplateCore简化调用Consul中的服务