Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am trying to upload files to a key-protexted sftp server using RCurl::ftpUpload

Here is my command: RCurl::ftpUpload(what = "~/documents/site/_site/index.html",

  •              to = "sftp://root@206.81.31.173/var/www/html/",
    
  •       verbose = TRUE,
    
  •       .opts = list(
    
  •         ssh.private.keyfile = "id_rsa", 
    
  •         ssh.public.keyfile = "ida_rsa.pub"
    
  •       ) 
    
  • )

I get the following error:

Error in function (type, msg, asError = TRUE) : Could not load public key file

I generated new keys, but have not been able to figure out what the problem is.

any ideas?

question from:https://stackoverflow.com/questions/65923105/rcurl-ftpupload-for-sftp

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...