Heena Patel
Heena Patel

Reputation: 21

Upload backup files on Azure file storage from Ubuntu server

I need to upload my backup files from my Ubuntu server to Azure file storage, unable to upload it. Please share any idea or suggestions for the same.

Thank you in advance!!!

Upvotes: 1

Views: 1129

Answers (3)

Rena-MSFT
Rena-MSFT

Reputation: 55

Azure File Storage on-premises access from across all regions for Linux distribution - Ubuntu 17.04 is now supported right out of the box and no extra setup is needed.

https://azure.microsoft.com/en-us/blog/azure-file-storage-on-premises-access-for-ubuntu/

Upvotes: 0

Mary17
Mary17

Reputation: 41

Have you thought of implementing some agent tool to backup the data from Ubuntu to Azure Cloud storage? I think it can be a way out. Have a look at Cloudberry. It may help you. I see no other way to help which does not take so much time and effort.

Upvotes: 1

Jason Ye
Jason Ye

Reputation: 13954

You just want to store the your gitlab backup files? or want store and share them?

If you just want to store them, I think we can create Azure storage blobs to store backup files. In Linux we can install Azure CLI 1.0 or Azure CLI 2.0 to upload files to Azure blobs.
More information about how to use CLI 1.0 or CLI 2.0 to upload files to Azure, please refer to the link.

If you want to store and share the backup files, I think we can use Azure file share storage. Azure files share service same as SMB 3.0, so you can mount the Azure file share to your Ubuntu, in this way, you can upload the backup files to it. Then you can mount Azure file share service to others to share the backup files.

More information about Azure file share service, please refer to the link.

Upvotes: 1

Related Questions