root@ubuntu:/home/nescafe/temp# cp consul /usr/bin
root@ubuntu:/home/nescafe/temp# consul -v
Consul v0.8.1
Protocol 2 spoken by default, understands 2 to 3 (agent will automatically use protocol >2 when speaking to compatible agents)
root@ubuntu:/home/nescafe/temp# consul agent -dev
root@ubuntu:/home/nescafe# consul members
Node Address Status Type Build Protocol DC
ubuntu 127.0.0.1:8301 alive server 0.8.1 2 dc1
root@ubuntu:/home/nescafe# sudo apt-get update
root@ubuntu:/home/nescafe/temp# sudo apt-get install virtualbox-5.1
root@ubuntu:/home/nescafe/temp# apt-get -f install
root@ubuntu:/home/nescafe/temp# apt install curl
root@ubuntu:/home/nescafe# curl localhost:8500/v1/catalog/nodes
root@ubuntu:/home/nescafe/temp# curl localhost:8500/v1/catalog/nodes
[
{
"ID": "fcde1a12-724a-b4b4-44b7-05fbb684bbac",
"Node": "ubuntu",
"Address": "127.0.0.1",
"TaggedAddresses": {
"lan": "127.0.0.1",
"wan": "127.0.0.1"
},
"Meta": {},
"CreateIndex": 5,
"ModifyIndex": 6
}
]
root@ubuntu:/home/nescafe/temp# dig @127.0.0.1 -p 8600 Armons-MacBook-Air.node.consul
; <<>> DiG 9.10.3-P4-Ubuntu <<>> @127.0.0.1 -p 8600 Armons-MacBook-Air.node.consul
; (1 server found)
#停止服务
ctrl+z
root@ubuntu:/home/nescafe/temp# mkdir /etc/consul.d
root@ubuntu:/home/nescafe/temp# echo '{"service": {"name": "web", "tags": ["rails"], "port": 80}}' \
> | sudo tee /etc/consul.d/web.json
{"service": {"name": "web", "tags": ["rails"], "port": 80}}
root@ubuntu:/home/nescafe/temp# consul agent -dev -config-dir=/etc/consul.d
#curl 7.53.1 for Windows
https://winampplugins.co.uk/curl/
nescafe@ubuntu:~$ curl http://localhost:8500/v1/catalog/service/web
[
{
"ID": "fcde1a12-724a-b4b4-44b7-05fbb684bbac",
"Node": "ubuntu",
"Address": "127.0.0.1",
"TaggedAddresses": {
"lan": "127.0.0.1",
"wan": "127.0.0.1"
},
"NodeMeta": {},
"ServiceID": "web",
"ServiceName": "web",
"ServiceTags": [
"rails"
],
"ServiceAddress": "",
"ServicePort": 80,
"ServiceEnableTagOverride": false,
"CreateIndex": 7,
"ModifyIndex": 7
}
]
nescafe@ubuntu:~$ curl 'http://localhost:8500/v1/health/service/web?passing'
[
{
"Node": {
"ID": "fcde1a12-724a-b4b4-44b7-05fbb684bbac",
"Node": "ubuntu",
"Address": "127.0.0.1",
"TaggedAddresses": {
"lan": "127.0.0.1",
"wan": "127.0.0.1"
},
"Meta": {},
"CreateIndex": 5,
"ModifyIndex": 6
},
"Service": {
"ID": "web",
"Service": "web",
"Tags": [
"rails"
],
"Address": "",
"Port": 80,
"EnableTagOverride": false,
"CreateIndex": 7,
"ModifyIndex": 7
},
"Checks": [
{
"Node": "ubuntu",
"CheckID": "serfHealth",
"Name": "Serf Health Status",
"Status": "passing",
"Notes": "",
"Output": "Agent alive and reachable",
"ServiceID": "",
"ServiceName": "",
"CreateIndex": 5,
"ModifyIndex": 5
}
]
}
]
root@ubuntu:/home/nescafe# consul agent -ui
https://demo.consul.io/ui/
相关推荐
Consul是一款由HashiCorp公司开发的开源工具,主要用于实现分布式系统的服务发现、健康检查、配置共享和安全网络通信。在Windows操作系统上使用Consul,无论是Windows 10还是Windows 7,都能提供便捷的集群管理和...
### Consul 安装与升级知识点 #### 一、Consul 安装目录规划 - **Consul 安装目录**: `/usr/local/consul-VERSION` (其中 `VERSION` 表示当前版本号),安装完成后,通过软链接指向 `/usr/local/consul`。 - **二...
在 `WebApi.Consul.Demo` 或 `WebApi.Consul.Interface` 项目中,我们可能看到使用 Consul 客户端进行服务发现的代码,通过调用 `Catalog.ServiceGet()` 或 `Health.ServicePassing()` 来获取服务列表或检查服务健康...
Consul是由HashiCorp公司开发的一款开源工具,用于实现分布式系统的服务发现与配置。在本地进行Consul客户端的开发和测试对于构建微服务架构至关重要。本文将深入探讨如何使用Consul客户端进行服务注册和发现,以及...
Consul 是一款由 HashiCorp 公司开发的开源工具,用于实现分布式系统的服务发现、配置和服务网格功能。它提供了一套完整的解决方案,包括服务发现、健康检查、KV 存储、多数据中心的解决方案,广泛应用于微服务架构...
Consul 是一款由 HashiCorp 公司开发的开源工具,用于实现分布式系统的服务发现、配置管理和健康检查。在 Windows 操作系统环境下,Consul 的配置文件默认情况下并不具备持久化存储的特性,这意味着一旦服务器重启或...
Consul 是一个支持多数据中心分布式高可用的服务发现和配置共享的服务软件,由 HashiCorp 公司用 Go 语言开发, 基于 Mozilla Public License 2.0 的协议进行开源. Consul 支持健康检查,并允许 HTTP 和 DNS 协议调用 ...
Consul是一款由HashiCorp公司开发的开源工具,主要用于实现分布式系统的服务发现、配置管理和安全通信。这个“Consul中文版帮助文档”很显然是为了帮助中国用户更好地理解和使用Consul而准备的。以下是对Consul及其...
Consul 是一款由 HashiCorp 公司开发的开源工具,用于实现分布式系统的服务发现与配置。它提供了包括服务发现、健康检查、KV 存储、多数据中心的解决方案,广泛应用于微服务架构中。让我们深入了解一下 Consul 的...
SpringCloud作为一个流行的微服务框架,提供了多种服务发现组件,如Nacos和Consul。本篇文章将深入探讨如何在SpringCloud项目中整合这两种服务发现工具。 **Nacos** Nacos是阿里巴巴开源的一款服务发现和配置管理...
Consul 是 HashiCorp 公司推出的一款开源工具,它提供了服务发现、健康检查、KV 存储、安全网络配置等功能,广泛应用于微服务架构中。这个压缩包 "最新版windows consul_1.13.0_windows_amd64.zip" 提供的是 Consul ...
在本文中,我们将深入探讨如何在C#项目中集成Ocelot与Consul,以便实现微服务间的通信和治理。Ocelot是一个用C#编写的API Gateway,它提供了简单的API路由、负载均衡和熔断等功能,而Consul则是一个用于服务发现和...
Consul是一款由HashiCorp公司开发的开源工具,主要用于实现分布式系统的服务发现与配置。它提供了包括服务发现、健康检查、KV存储、多数据中心的解决方案。然而,在实际使用过程中,有时会遇到Consul无法正常启动的...
Consul 是一款由 HashiCorp 公司开发的开源工具,用于实现分布式系统的服务发现与配置。这个压缩包“consul-1.6.1-win-64.zip”提供了 Consul 的1.6.1版本,专为在Windows 64位操作系统上运行而设计。在IT领域,服务...
Consul 是 HashiCorp 公司推出的一款开源工具,用于实现分布式系统的服务发现与配置。在微服务架构中,服务发现是至关重要的,Consul 提供了一种简单易用的方式来解决这个问题。它不仅包含了服务发现的功能,还集成...
国内不能下载了,得翻墙!...1.解压后执行命令 sudo scp consul /usr/local/bin/。 2.在bin目录下执行consul命令,输出相关命令表示安装成功。 3.启动consul,执行命令consul agent -dev 4.启动后访问地址: ...
Consul 是一款由 HashiCorp 公司开发的开源工具,用于实现分布式系统的服务发现、健康检查、KV 存储和多数据中心的解决方案。在本文中,我们将深入探讨 Consul 的核心功能、工作原理以及如何在 Linux 系统上安装和...
Consul 是一款由 HashiCorp 公司开发的开源工具,用于实现分布式系统的服务发现与配置。这个压缩包“consul_1.9.2_linux_amd64.zip”包含了 Consul 的最新版本1.9.2,适用于 Linux 操作系统的 AMD64 架构。由于官方...
Consul 是一款由 HashiCorp 公司开发的开源工具,用于实现分布式系统的服务发现、配置和服务网格功能。这个压缩包 "consul_1.4.3_windows_amd64.zip" 提供的是 Consul 的 1.4.3 版本,专为基于 AMD64 架构(64 位)...
《Consul Exporter与Prometheus服务发现详解》 在现代云原生环境中,监控系统扮演着至关重要的角色,其中Prometheus作为一款强大的时序数据库和监控系统,深受开发者喜爱。而Consul Exporter则是在Prometheus生态...