zoukankan      html  css  js  c++  java
  • consul 初体验

    consul server:
    
    192.168.48.134:
    
    #!/bin/bash
    cd /data/server/consuls
    nohup /data/server/consuls/consul agent -server -bootstrap-expect 3 -node=node1 -config-dir=/etc/consul.d --data-dir=/etc/consul.d -bind=192.168.48.134 -client=0.0.0.0   -ui  > consul-server.log 2>&1 &
    
    192.168.2.171:
    
    #!/bin/bash
    cd /data/server/consuls
    nohup /data/server/consuls/consul agent -server -bootstrap-expect 3 -node=node2 -config-dir=/etc/consul.d --data-dir=/etc/consul.d -bind=192.168.2.171 -client=0.0.0.0   -ui > consul-server.log 2>&1 &
    
    
    
    
    192.168.2.172:
    
    #!/bin/bash
    cd /data/server/consuls
    nohup /data/server/consuls/consul agent -server -bootstrap-expect 3 -node=node3 -config-dir=/etc/consul.d --data-dir=/etc/consul.d -bind=192.168.2.172 -client=0.0.0.0   -ui > consul-server.log 2>&1 &
    
    
    #在192.168.48.134机器上操作,将171和172加入集群
    ./consul join  192.168.2.171  192.168.2.172
    
    consul client:
    
    192.168.48.135:
    
    #!/bin/bash
    cd /data/server/consuls
    nohup /data/server/consuls/consul agent  -node=192.168.48.135-client1 -config-dir=/etc/consul.d --data-dir=/etc/consul.d -bind=192.168.48.135 -client=0.0.0.0   > consul-client.log 2>&1 &    
    
    
    192.168.48.136:
    
    #!/bin/bash
    cd /data/server/consuls
    nohup /data/server/consuls/consul agent  -node=192.168.48.136-client2 -config-dir=/etc/consul.d --data-dir=/etc/consul.d -bind=192.168.48.136 -client=0.0.0.0    > consul-client.log 2>&1 & 
    
    #在192.168.48.134机器上操作:
    ./consul join  192.168.48.135  192.168.48.136

    效果展示:

  • 相关阅读:
    python 版本 jaeger-client 导入失败 jaeger-client-python
    kubernetes ingress 重定向地址错误
    win10 多用户登录
    kubernetes监控prometheus配置项解读
    最新版 源码编译 docker
    alpine 容器优化
    kubernetes 中安装 heapster 问题
    github开源文章生成pdf
    jmeter分布式测试
    Cucumber(1)
  • 原文地址:https://www.cnblogs.com/ipyanthony/p/11328286.html
Copyright © 2011-2022 走看看