我试图使用 Jenkins Pipeline 将文件从 Linux 复制到 Windows 共享文件夹。你能分享解决的工作步骤吗?
方法 1:
curl --upload-file /home/me/local_file.txt --user "OurWindowsDomain\UserName:thePassword" smb://172.16.17.52/ShareName/Path/To/Remote/Dir
Error : *Recv failure: Connection reset by peer 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 * 关闭连接 0 curl: (56) Recv 失败:连接被对端重置
方法 2:
smbclient //server/share -c 'cd c:/remote/path ; put local-file remote-file'
错误:协议协商失败:NT_STATUS_CONNECTION_RESET
方法 3:
SCP 无法正常工作。