Azure Blob Storage is an economical data storage option on Azure and supplies much of the infrastructure for Azure storage in general. With NFS though, it allows Azure Blob Storage to be mounted as part of a the file system for a Windows or Linux VM, opening up a wide array of possible options for apps, both old and new, to take advantage of Blob Storage on a VM.
Blobfuse: [ Ссылка ]
Enable the Feature with Azure CLI
az feature register --namespace Microsoft.Storage --name AllowNFSV3
az feature register --namespace Microsoft.Storage --name PremiumHns
Mount Storage in Windows:
mount -o nolock STORAGEACCOUNT.blob.core.windows.net:/STORAGEACCOUNT/CONTAINER Q:
Enable Read/Write access in Windows:
New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\ClientForNFS\CurrentVersion\Default -Name AnonymousUid -PropertyType DWord -Value 0
New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\ClientForNFS\CurrentVersion\Default -Name AnonymousGid -PropertyType DWord -Value 0
Mount Storage using Linux
mount -o sec=sys,vers=3,nolock,proto=tcp STORAGEACCOUNT.blob.core.windows.net:/STORAGEACCOUNT/CONTAINER /mnt/mystuff
Twitter:
Blaize: [ Ссылка ]
Wintellect: [ Ссылка ]
WintellectNOW: [ Ссылка ]
Wintellect: [ Ссылка ]
WintellectNow: [ Ссылка ]
Blaize: [ Ссылка ]
Ещё видео!