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

    效果展示:

  • 相关阅读:
    webpack debug
    linux下光标操作
    windows 下 基于express搭建 https协议的网站
    js里的null 与undefined
    scrollIntoView 前的元素滚动到浏览器窗口的可视区域内 不止垂直滚动,还有水平滚动
    js 四舍五入实现
    react 踩坑记
    String.slice
    sublime 常用插件
    springcloud 自己挖坑 @ConfigurationProperties不生效
  • 原文地址:https://www.cnblogs.com/ipyanthony/p/11328286.html
Copyright © 2011-2022 走看看