linux 的 azcopy 中的日记文件夹
Journal folder in azcopy for linux
我正在尝试在 Debian Jessie 上使用 azcopy
将文件上传到 Azure blob 存储,我想以并行方式执行此操作(同时有许多 azcopy
个实例)。目前它失败了
An error occurred while reading the restart journal from
"/root/Microsoft/Azure/AzCopy". Detailed error: The process cannot
access the file '/root/Microsoft/Azure/AzCopy/AzCopyCheckpoint.jnl'
because it is being used by another process.
根据文档,应该有 /Z:[journal-file-folder]
标志来指定不同的日志路径,但这在 Linux 上不起作用,因
而失败
The syntax of the command is incorrect. Unrecognized command or
argument
我已经尝试了所有我能想到的变体,但没有成功。有什么想法吗?
每个文档 here,请使用 --resume
选项为日志文件指定自定义位置。
If you want to specify a custom location for the journal file:
azcopy \
--source /mnt/myfiles \
--destination https://myaccount.blob.core.windows.net/mycontainer \
--dest-key key \
--resume "/mnt/myjournal"
我正在尝试在 Debian Jessie 上使用 azcopy
将文件上传到 Azure blob 存储,我想以并行方式执行此操作(同时有许多 azcopy
个实例)。目前它失败了
An error occurred while reading the restart journal from "/root/Microsoft/Azure/AzCopy". Detailed error: The process cannot access the file '/root/Microsoft/Azure/AzCopy/AzCopyCheckpoint.jnl' because it is being used by another process.
根据文档,应该有 /Z:[journal-file-folder]
标志来指定不同的日志路径,但这在 Linux 上不起作用,因
The syntax of the command is incorrect. Unrecognized command or argument
我已经尝试了所有我能想到的变体,但没有成功。有什么想法吗?
每个文档 here,请使用 --resume
选项为日志文件指定自定义位置。
If you want to specify a custom location for the journal file:
azcopy \
--source /mnt/myfiles \
--destination https://myaccount.blob.core.windows.net/mycontainer \
--dest-key key \
--resume "/mnt/myjournal"