Created
June 11, 2020 08:55
-
-
Save velotiotech/160007ce8a9642d7398b2d4c9097e197 to your computer and use it in GitHub Desktop.
Velotio - HashiCorp Consul Part 1 - Run Consul in dev mode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ consul agent -dev | |
==> Starting Consul agent... | |
==> Consul agent running! | |
Version: 'v1.4.2' | |
Node ID: 'ef46ebb7-3496-346f-f67a-30117cfec0ad' | |
Node name: 'devcube' | |
Datacenter: 'dc1' (Segment: '<all>') | |
Server: true (Bootstrap: false) | |
Client Addr: [127.0.0.1] (HTTP: 8500, HTTPS: -1, gRPC: 8502, DNS: 8600) | |
Cluster Addr: 127.0.0.1 (LAN: 8301, WAN: 8302) | |
Encrypt: Gossip: false, TLS-Outgoing: false, TLS-Incoming: false | |
==> Log data will now stream in as it occurs: | |
2019/03/04 00:38:01 [DEBUG] agent: Using random ID "ef46ebb7-3496-346f-f67a-30117cfec0ad" as node ID | |
2019/03/04 00:38:01 [INFO] raft: Initial configuration (index=1): [{Suffrage:Voter ID:ef46ebb7-3496-346f-f67a-30117cfec0ad Address:127.0.0.1:8300}] | |
2019/03/04 00:38:01 [INFO] raft: Node at 127.0.0.1:8300 [Follower] entering Follower state (Leader: "") | |
2019/03/04 00:38:01 [INFO] serf: EventMemberJoin: devcube.dc1 127.0.0.1 | |
2019/03/04 00:38:01 [INFO] serf: EventMemberJoin: devcube 127.0.0.1 | |
2019/03/04 00:38:01 [INFO] consul: Adding LAN server devcube (Addr: tcp/127.0.0.1:8300) (DC: dc1) | |
2019/03/04 00:38:01 [INFO] consul: Handled member-join event for server "devcube.dc1" in area "wan" | |
2019/03/04 00:38:01 [DEBUG] agent/proxy: managed Connect proxy manager started | |
2019/03/04 00:38:01 [WARN] raft: Heartbeat timeout from "" reached, starting election | |
2019/03/04 00:38:01 [INFO] raft: Node at 127.0.0.1:8300 [Candidate] entering Candidate state in term 2 | |
2019/03/04 00:38:01 [DEBUG] raft: Votes needed: 1 | |
2019/03/04 00:38:01 [DEBUG] raft: Vote granted from ef46ebb7-3496-346f-f67a-30117cfec0ad in term 2. Tally: 1 | |
2019/03/04 00:38:01 [INFO] raft: Election won. Tally: 1 | |
2019/03/04 00:38:01 [INFO] raft: Node at 127.0.0.1:8300 [Leader] entering Leader state | |
2019/03/04 00:38:01 [INFO] consul: cluster leadership acquired | |
2019/03/04 00:38:01 [INFO] consul: New leader elected: devcube | |
2019/03/04 00:38:01 [INFO] agent: Started DNS server 127.0.0.1:8600 (tcp) | |
2019/03/04 00:38:01 [INFO] agent: Started DNS server 127.0.0.1:8600 (udp) | |
2019/03/04 00:38:01 [INFO] agent: Started HTTP server on 127.0.0.1:8500 (tcp) | |
2019/03/04 00:38:01 [INFO] agent: Started gRPC server on 127.0.0.1:8502 (tcp) | |
2019/03/04 00:38:01 [INFO] agent: started state syncer | |
2019/03/04 00:38:01 [INFO] connect: initialized primary datacenter CA with provider "consul" | |
2019/03/04 00:38:01 [DEBUG] consul: Skipping self join check for "devcube" since the cluster is too small | |
2019/03/04 00:38:01 [INFO] consul: member 'devcube' joined, marking health alive | |
2019/03/04 00:38:01 [DEBUG] agent: Skipping remote check "serfHealth" since it is managed automatically | |
2019/03/04 00:38:01 [INFO] agent: Synced node info | |
2019/03/04 00:38:01 [DEBUG] agent: Node info in sync | |
2019/03/04 00:38:01 [DEBUG] agent: Skipping remote check "serfHealth" since it is managed automatically | |
2019/03/04 00:38:01 [DEBUG] agent: Node info in sync |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment