Synology to Azure Files

Eric Henderson 2 Reputation points
2024-08-13T10:21:38.5166667+00:00

Hi

I am trying to use Synology Cloud synch to copy files to Azure file storage with the intention of mapping drives to users computers via Intune, I managed to get these files to Azure Blob container but not Azure File storage, I had to move the files using Azure File Explorer, does anyone know a way I can get a synch going directly to Azure files rather than Blob container?

Thanks

agentdogit

Azure Storage
Azure Storage
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
3,545 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Nehruji R 8,181 Reputation points Microsoft External Staff Moderator
    2024-08-14T09:27:42.62+00:00

    Hello Eric Henderson,

    Greetings! Welcome to Microsoft Q&A Platform.

    To move your files from an Azure Blob container to Azure File Shares, you can use the AzCopy tool, which is a command-line utility designed for copying and synchronizing files between storage accounts. Here’s a step-by-step guide to help you:

    1. Install AzCopy:

    2. Generate SAS Tokens:

    • Create Shared Access Signatures (SAS) for both your source Blob container and your destination File Share. This will allow AzCopy to access your storage accounts securely.

    3. Use AzCopy to Sync Files:

    • Open your command prompt or terminal and use the following command to sync your files:

    Windows Command PromptCopy

         azcopy sync "https://<sourceaccount>.blob.core.windows.net/<container-name>?<SAS>" "https://<targetaccount>.file.core.windows.net/<fileshare-name>?<SAS>" --recursive=true
    
    • Replace <sourceaccount>, <container-name>, <SAS>, <targetaccount>, and <fileshare-name> with your actual account names, container name, and SAS tokens.

    4. Monitor the Transfer:

    • AzCopy will display the progress of the transfer. Given the size of your data (1.6TB), this process might take some time.

    5. Verify the Transfer:

    • Once the transfer is complete, verify that all files have been successfully copied to your Azure File Share.

    reference for migrating the data - https://learn.microsoft.com/en-us/azure/storage/files/storage-files-migration-nas-hybrid

    Alternatively, you can perform the same via Azure Storage explorer to transfer the data to file storage.

    Hope the information helps! please let us know if you have any further queries. I’m happy to assist you further.


    Please "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.