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

    效果展示:

  • 相关阅读:
    控制反转(IOC)/依赖注入(DI)理解
    MySQL常用命令总结
    Java继承与清理
    Java组合与继承生成的类中构造函数的执行顺序
    Java中4种权限的理解
    C# 选项卡控件
    USMART 组件移植到STM32
    c# 规范用户输入控件
    c# 图像呈现控件PictureBox
    C# 制作软件启动界面
  • 原文地址:https://www.cnblogs.com/ipyanthony/p/11328286.html
Copyright © 2011-2022 走看看