Configuring backups to storage accounts #175690
Replies: 4 comments
-
|
Hi @rnadupal, Yes, you can store GitHub Enterprise Server backups in Azure Storage accounts using the GitHub Backup Utilities. Here’s how you can do it: 1. Supported Storage OptionsGitHub Backup Utilities let you back up to any destination that is accessible from your server—including Azure Blob Storage—by using supported tools like 2. Common ApproachesA. Use AzCopy to Upload Backups
B. Mount Azure File Share
C. Use Azure Blobfuse (Linux Only)
3. References |
Beta Was this translation helpful? Give feedback.
-
|
Hello, Yes, it’s possible to store GitHub backups in Azure Storage. Most GitHub backup utilities allow you to export backups to a custom location or script the process. You can: Use the utility to create the backup locally. Upload the backup to Azure Blob Storage using: Azure CLI (az storage blob upload) AzCopy (azcopy copy) Or automate it in a script after each backup. There isn’t a native GitHub → Azure integration, but with a simple script, you can reliably store your backups in Azure. |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
|
Yes, you can use Azure Storage for this. I would just avoid making Blob storage the live working directory for backup-utils. The pattern I would use is:
Rough shape: ghe-backup
azcopy sync /data/ghes-backups "https://<account>.blob.core.windows.net/<container>/<path>?<sas>" --recursiveIf the backup host is an Azure VM, I would use managed identity with One note for new setups: GitHub is moving newer GHES versions toward Backup Service, with Backup Utilities being phased out later. If this is a fresh design, I would check Backup Service first. If you are already on backup-utils, local backup plus AzCopy is a solid Azure approach. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Question
Body
Hello,
I was going thru the documentation for configuring the backups using the GH backup utilities. I was thinking of storing the backups in the azure storage accounts. Is it possible?
Beta Was this translation helpful? Give feedback.
All reactions