gpt4 book ai didi

r - 在 R 中使用 Rcurl 中的 SCP 函数

转载 作者:行者123 更新时间:2023-12-02 14:30:47 25 4
gpt4 key购买 nike

我已经使用 PuTTY 测试了我的 SSH 身份验证成功,我的意思是我可以ssh使用提供的私钥到远程服务器。但是,我正在尝试使用 SCP函数来自 Rcurl在 R 中打包,我收到错误消息:

Error in function (type, msg, asError = TRUE) : Authentication failure



这是我的代码
r <- scp(host='eee.com', path = "/aaa/bbb/test.sas7bdat", 
keypasswd = NA, user = "yyyyyy", rsa = TRUE,
key = "C:/Users/.ssh/authorized_keys", binary = NA)
C:/Users/.ssh/authorized_keys是我的私有(private) RSA key 。

最佳答案

问题是“ key ”必须同时包含公钥和私钥。这应该有效:

r <- scp(host='eee.com', path = "/aaa/bbb/test.sas7bdat", keypasswd = NA, user = "yyyyyy", rsa = TRUE, key = c("C:/Users/.ssh/authorized_keys.pub","C:/Users/.ssh/authorized_keys"), binary = NA)

关于r - 在 R 中使用 Rcurl 中的 SCP 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47313391/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com