Upgrade GitHub Enterprise to get the latest features and security updates.
In this guide
- Preparing to upgrade
- Taking a snapshot
- Upgrading a single appliance
- Upgrading an appliance that uses replica instances
- Restoring from a failed upgrade
Preparing to upgrade
- Determine an upgrade strategy. For more information, see "About upgrade requirements."
- Create a fresh backup of your primary instance with the GitHub Enterprise Backup Utilities. For more information, see the Backup Utilities README.md file.
-
Schedule a maintenance window for GitHub Enterprise end users.
Note: The maintenance window is dependent on the upgrade type you perform. Following the versioning scheme of MAJOR.FEATURE.PATCH, patch releases typically require less than five minutes of downtime. Feature releases that include data migrations take longer depending on storage performance and the amount of data that's migrated. For more information, see "Enabling and scheduling maintenance mode."
- Run a migration script before completing the upgrade if you're upgrading to GitHub Enterprise 2.11 or later from either 2.9 or 2.10. For more information, see "Migrating audit logs to GitHub Enterprise 2.11 or later."
Taking a snapshot
A snapshot is a checkpoint of a virtual machine (VM) at a point in time. We highly recommend taking a snapshot before upgrading your virtual machine after you place it in maintenance mode. If an upgrade fails, you can revert your VM back to the snapshot.
There are two types of snapshots:
- VM snapshots save your entire VM state, including user data and configuration data. This snapshot method requires a large amount of disk space and is time consuming.
-
Data disk snapshot only save your user data. We recommend using this snapshot method for the upgrade process.
Note: Some platforms don't allow you to take a snapshot of just your data disk. For these platforms, you'll need to take a snapshot of the entire VM.
Platform | Snapshot method | Snapshot documentation URL |
---|---|---|
Amazon AWS | Disk | https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-creating-snapshot.html |
Azure | VM | https://azure.microsoft.com/en-us/documentation/articles/backup-azure-vms/ |
Hyper-V | VM | https://technet.microsoft.com/en-us/library/dd851843.aspx |
VMware | VM | https://pubs.vmware.com/vsphere-50/index.jsp#com.vmware.vsphere.vm_admin.doc_50/GUID-9720B104-9875-4C2C-A878-F1C351A4F3D8.html |
XenServer | VM | http://docs.citrix.com/en-us/xencenter/6-2/xs-xc-vms-snapshots.html |
Upgrading a single appliance
Note: If you've enabled automatic update checks, you don't need to download the upgrade package and can use the file that was automatically downloaded. For more information, see "Enabling automatic update checks."
-
SSH into your GitHub Enterprise instance:
ssh -p 122 admin@hostname
From the GitHub Enterprise Releases page, copy the URL for the upgrade package (.pkg file).
-
Download the upgrade package to your GitHub Enterprise instance using
curl
:admin@hostname:~$ curl -L -O UPGRADE-PKG-URL
Enable maintenance mode and wait for all active processes to complete on the GitHub Enterprise instance. For more information, see "Enabling and scheduling maintenance mode."
-
Run the
ghe-upgrade
command using the package file name:admin@hostname:~$ ghe-upgrade GITHUB-UPGRADE.pkg *** verifying upgrade package signature...
-
Confirm that you'd like to continue with the upgrade and restart after the package signature verifies. The new root filesystem writes to the secondary partition and the instance automatically restarts in maintenance mode:
*** applying update... This package will upgrade your installation to version version-number Current root partition: /dev/xvda1 [version-number] Target root partition: /dev/xvda2 Proceed with installation? [y/N]
Disable maintenance mode so users can use your GitHub Enterprise instance.
Upgrading an appliance that uses replica instances
Appliances configured for high-availability use replica instances in addition to primary instances. To upgrade these appliances, you'll need to upgrade both the primary instance and replica instance.
Upgrading the primary instance
Warning: When replication is stopped, if the primary fails, any work that is done before the replica is upgraded and the replication begins again will be lost.
- On the primary instance, enable maintenance mode and wait for all active processes to complete.
-
Connect to the replica instance over SSH as the "admin" user on port 122:
ssh -p 122 admin@replica-host
On the replica instance, run
ghe-repl-stop
to stop replication.-
Upgrade the primary instance. For more information, see the procedure for upgrading a single appliance.
Note: When upgrading the appliance, you don't need to enable maintenance mode because your primary instance is already in maintenance mode.
Upgrading a replica instance
-
Upgrade the replica instance. For more information, see the procedure for upgrading a single appliance.
Note: You don't need to enable maintenance mode after upgrading.
-
Connect to the replica instance over SSH as the "admin" user on port 122:
ssh -p 122 admin@replica-host
-
Verify the upgrade by running:
cat /etc/github/enterprise-release
RELEASE_VERSION
should reflect the version you have upgraded to.The replication on the replica instance automatically starts.
-
On the replica instance, run
ghe-repl-status
to make sure replication services are running correctly. This command will returnOK
for all services when a successful replication is in progress and the replica has upgraded. If the command returnsReplication is not running
, the replication may still be starting. Wait about one minute before runningghe-repl-status
again.Note: While the resync is in progress
ghe-repl-status
may return expected messages indicating that replication is behind. For example:CRITICAL: git replication is behind the primary by more than 1007 repositories and/or gists
If
ghe-repl-status
didn't returnOK
, follow the steps below to manually start the replication. On the replica instance, run
ghe-repl-setup <primary-instance-ip>
again.On the replica instance, run
ghe-repl-start
to start replication.On the replica instance, run
ghe-repl-status
to make sure replication services are running correctly. This command will returnOK
for all services when a successful replication is in progress and the replica has upgraded.
Restoring from a failed upgrade
If an upgrade fails or is interrupted, you should revert your instance back to its previous state. The process for completing this depends on whether you're using a VM snapshot or a data disk snapshot.
Using a data disk snapshot
Enable maintenance mode and wait for all active processes to complete on the GitHub Enterprise instance. For more information, see "Enabling and scheduling maintenance mode."
To restore your boot partition, run
ghe-rollback-rootfs
. This command only restores the boot partition and will turn the VM off when it's finished. For more information, see "Command line utilities."- To restore your data partition, revert to your previous user data snapshot.
- After the restoration finishes, start your VM.
Using a VM snapshot
If you created a whole VM snapshot, refer to the instructions for your platform to restore your VM snapshot.