简体   繁体   English

如何从 azure 云连接到 linux 服务器并上传到 BLOB 存储?

[英]how to connect to linux server from azure cloud and upload to BLOB storage?

I am trying to upload a 1tb file to azure blob storage.我正在尝试将 1tb 文件上传到 azure blob 存储。 but the file is on a Linux server.但该文件位于 Linux 服务器上。 Is there anyway I can directly connect and upload this?无论如何我可以直接连接并上传这个吗?

  1. how do I connect to a Linux server and upload to the BLOB without using ADF?如何在不使用 ADF 的情况下连接到 Linux 服务器并上传到 BLOB? Is there any other way?有没有其他办法? Can this be done with AZ copy utility tool?这可以使用 AZ 复制实用工具完成吗?

  2. is there any faster approach to just uploading to the blob?有没有更快的方法来上传到 blob? Usually I upload it from local drives, but now I want to connect to a Linux server通常我从本地驱动器上传它,但现在我想连接到 Linux 服务器

You can mount the Blob Storage as a drive on your Linux server using Blobfuse which is a virtual file system driver for Azure Blob storage.可以使用Blobfuse (Azure Blob 存储的虚拟文件系统驱动程序)将 Blob 存储挂载为 Linux 服务器上的驱动器。 Blobfuse allows you to access your existing block blob data in your storage account through the Linux file system. Blobfuse 允许您通过 Linux 文件系统访问存储帐户中现有的块 blob 数据。 Blobfuse uses the virtual directory scheme with the forward-slash '/' as a delimiter. Blobfuse 使用带有正斜杠“/”作为分隔符的虚拟目录方案。

You can read more about this here: https://docs.microsoft.com/en-us/azure/storage/blobs/storage-how-to-mount-container-linux .您可以在此处阅读更多相关信息: https : //docs.microsoft.com/en-us/azure/storage/blobs/storage-how-to-mount-container-linux

Alternately you can also use AzCopy , Azure CLI tools and even cross-platform Azure PowerShell to upload the data.或者,您还可以使用AzCopyAzure CLI tools甚至跨平台Azure PowerShell上传数据。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 从Linux上的Azure Blob存储中上载多个文件 - Upload multiple files in Azure Blob Storage from Linux 如何使用位于 azure webapp 中的 .sh 文件将多个文件从本地存储上传到 azure blob 存储 - How to upload multiple files from local storage to the azure blob storage using .sh file that located in azure webapp 想要将多个文件从Linux服务器复制到Azure blob - want to copy multiple files to Azure blob from Linux server 如何使用blobxfer从azure blob存储下载子目录 - how to download a sub directory from azure blob storage using blobxfer 如何将文件从Azure Blob复制到Linux中的某些路径 - How to copy the files from Azure blob to some of the path in Linux 用于Linux机器上传/下载Azure存储数据的天蓝色命令行工具 - azure command line tool for linux machine to upload/download data to/from Azure Storage 如何在Azure中连接到在Linux虚拟机上运行的mysql服务器 - how to connect to a mysql server running on a linux virtual machine in azure 使用 bash 脚本从 Azure Blob 存储读取 JSON 文件并写回 Blob 存储中的另一个文件 - Read JSON file from Azure Blob Storage using bash script and write back to another file in blob storage 如何从具有php的Linux服务器连接到Windows服务器中的数据库? - How to connect from a linux server with php to a database that is in a windows server? 如何将具有Wordpress 4.2服务器的Linux服务器连接到具有PHP 5.4的Azure SQL DB? - How to connect a Linux server with Wordpress 4.2 server to Azure SQL DB with PHP 5.4?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM