You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
INFO: Scanning...
failed to perform copy command due to error: unexpected response for managed disk authorization check: HEAD https://md-xxxxx.xxx.blob.storage.azure.net/xxxx/abcd
--------------------------------------------------------------------------------
RESPONSE 403: 403 Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.
ERROR CODE: AuthenticationFailed
--------------------------------------------------------------------------------
Response contained no body
--------------------------------------------------------------------------------
How can we reproduce the problem in the simplest way?
Export a snapshot and copy into any blob location
Have you found a mitigation/solution?
Use AzCopy v10.15.0 instead
Additional information
The 403 error is returned in credentialUtil.go:193 and storage server responds with 403 error because snapshot paramter is missing in URL request.
The snapshot parameter in source URL is split into ExtraQuerySplitResourceString and is not delivered to blobClient.
The text was updated successfully, but these errors were encountered:
> .\azcopy.exe --version
azcopy version 10.23.0
> .\azcopy.exe cp "https://md-xxxx.z8.blob.storage.azure.net/xxxx/abcd?sv=2018-03-28&sr=b&si=80f99841-c48d-48b6-82b5-24a68d88be5d&sig=xxxx" "https://xxxx.blob.core.windows.net/xxxx/xxxx.vhd?sp=racw&st=2024-02-06T01:07:14Z&se=2024-02-06T09:07:14Z&spr=https&sv=2022-11-02&sr=c&sig=xxxx"
...
Number of File Transfers: 1
Number of Folder Property Transfers: 0
Number of Symlink Transfers: 0
Total Number of Transfers: 1
Number of File Transfers Completed: 1
Number of Folder Transfers Completed: 0
Number of File Transfers Failed: 0
Number of Folder Transfers Failed: 0
Number of File Transfers Skipped: 0
Number of Folder Transfers Skipped: 0
TotalBytesTransferred: 32212255232
Final Job Status: Completed
Which version of the AzCopy was used?
Which platform are you using? (ex: Windows, Mac, Linux)
Windows
What command did you run?
Copy blob from a snapshot to a disk in blob container
What problem was encountered?
How can we reproduce the problem in the simplest way?
Export a snapshot and copy into any blob location
Have you found a mitigation/solution?
Use AzCopy v10.15.0 instead
Additional information
The 403 error is returned in credentialUtil.go:193 and storage server responds with 403 error because
snapshot
paramter is missing in URL request.The
snapshot
parameter in source URL is split intoExtraQuery
SplitResourceString
and is not delivered to blobClient.The text was updated successfully, but these errors were encountered: