General Upgrade Process
This pages describes the overall process and best practices that you should follow when upgrading Consul. Some versions also have steps that are specific to that version, so make sure you also review the upgrade instructions for the version you are on.
Download the New Version
First, download the binary for the new version you want.
All current and past versions of the CE and Enterprise releases are available here:
Prepare for the Upgrade
Take a snapshot to ensure you have a safe fallback option in case something goes wrong.
You can inspect the snapshot to ensure your cluster's Raft index was successfully captured.
Example output:
Store this snapshot somewhere safe. For more information on snapshots, refer to the following:
- Temporarily modify your Consul configuration to set the agent's
log_level
is set todebug
. Then issue the following command on your servers to reload the configuration:
When you change the cluster's log level, Consul gives you more information to work with in the event that something goes wrong.
Enterprise upgrades
Note
To experience a smoother upgrade process on Consul Enterprise, we recommend that you disable the upgrade migration feature.Consul Enterprise supports automated upgrades, but the autopilot feature may cause a node running an updated Consul version to elect a new leader before the version is updated on the existing cluster leader.
If your datacenter runs Consul Enterprise, update your server agent configuration file to disable autopilot's upgrade migration or run the following CLI command:
Perform the Upgrade
Issue the following command to discover which server is currently the leader:
You should receive output similar to this (exact formatting and content may differ based on version):
Take note of which agent is the leader.
Copy the new
consul
binary onto your servers and replace the existing binary with the new one.Use a service management system such as systemd or upstart to restart the Consul service on each server. You must restart follower server agents first, leaving the leader agent for last. If you are not using a service management system, you must restart the agent manually.
To validate that the agent has rejoined the cluster and is in sync with the leader after you restart it, issue the following command to the agent:
Check whether the
commit_index
andlast_log_index
fields have the same value. If done properly, this should avoid an unexpected leadership election due to loss of quorum.Double-check that all servers joined the cluster as expected and run the correct version. Issue the following command:
You should receive output that lists the servers as
alive
and running the same updated Consul version.Also double-check the Raft state to make sure there is a leader and sufficient voters:
You should receive output that lists one server as the
leader
and the rest asfollower
:Set your
log_level
back to its original value and issue the following command on your servers to reload the configuration:
Troubleshooting
Most problems with upgrading occur due to either failing to upgrade the leader agent last, or failing to wait for a follower agent to fully rejoin a cluster before moving on to another server. This can cause a loss of quorum and occasionally can result in all of your servers attempting to kick off leadership elections endlessly without ever reaching a quorum and electing a leader. Consul Enterprise users should disable upgrade migration to prevent autopilot from prematurely electing a new cluster leader.
Most of these problems can be solved by following the steps outlined in our Disaster recovery for Consul clusters document. If you are still having trouble after trying the recovery steps outlined there, then the following options for further assistance are available:
- CE users without paid support plans can request help in our Community Forum
- Enterprise and CE users with paid support plans can contact HashiCorp Support
When contacting Hashicorp Support, please include the following information in your ticket:
- Consul version you were upgrading FROM and TO.
- Debug level logs from all servers in the cluster that you are having trouble with. These should include logs from prior to the upgrade attempt up through the current time. If your logs were not set at debug level prior to the upgrade, please include those logs as well. Also, update your config to use debug logs, and include logs from after that was done.
- Your Consul config files (please redact any secrets).
- Output from
consul members -detailed
andconsul operator raft list-peers
from each server in your cluster.