zoukankan      html  css  js  c++  java
  • docker overlay network

    下载binary consul

    wget https://releases.hashicorp.com/consul/1.2.2/consul_1.2.2_linux_amd64.zip
    unzip consul_1.2.2_linux_amd64.zip
    mv consul /usr/bin/

    验证

    # consul -v
    Consul v1.2.2
    Protocol 2 spoken by default, understands 2 to 3 (agent will automatically use protocol >2 when speaking to compatible agents

    启动

    nohup consul agent -server -bootstrap -ui -data-dir /var/lib/consul -client=10.16.32.111 -bind=10.16.32.111 &>/var/log/consul.log &

    查看日志

    [root@lucien ~]# tail -f /var/log/consul.log 
        2018/08/22 17:28:05 [INFO] agent: started state syncer
        2018/08/22 17:28:12 [ERR] agent: failed to sync remote state: No cluster leader
        2018/08/22 17:28:13 [WARN] raft: Heartbeat timeout from "" reached, starting election
        2018/08/22 17:28:13 [INFO] raft: Node at 10.16.32.111:8300 [Candidate] entering Candidate state in term 2
        2018/08/22 17:28:13 [INFO] raft: Election won. Tally: 1
        2018/08/22 17:28:13 [INFO] raft: Node at 10.16.32.111:8300 [Leader] entering Leader state
        2018/08/22 17:28:13 [INFO] consul: cluster leadership acquired
        2018/08/22 17:28:13 [INFO] consul: New leader elected: lucien
        2018/08/22 17:28:13 [INFO] consul: member 'lucien' joined, marking health alive
        2018/08/22 17:28:15 [INFO] agent: Synced node info
  • 相关阅读:
    data:image/png;base64
    禅道项目管理软件
    ASP.NET MVC验证
    Visual Studio 2013/2015/2017快捷键(转)
    css默认值汇总
    转载:火狐的默认样式表
    浅析CSS——元素重叠及position定位的z-index顺序
    浏览器默认样式(User Agent Stylesheet)
    MVC ajaxSubmit上传图片
    jquery.validate运用和扩展
  • 原文地址:https://www.cnblogs.com/blogscc/p/9519994.html
Copyright © 2011-2022 走看看