gpt4 book ai didi

go - 在 go 中通过 SSH 发送文件

转载 作者:数据小太阳 更新时间:2023-10-29 03:32:30 24 4
gpt4 key购买 nike

I found this answer before posting this question but the answer is not clear to me.

这是答案的代码:

conn, err := ssh.Dial("tcp", hostname+":22", config)
if err != nil {
return err
}

session, err := conn.NewSession()
if err != nil {
return err
}
defer session.Close()

r, err := session.StdoutPipe()
if err != nil {
return err
}

name := fmt.Sprintf("%s/backup_folder_%v.tar.gz", path, time.Now().Unix())
file, err := os.OpenFile(name, os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0644)
if err != nil {
return err
}
defer file.Close()

if err := session.Start(cmd); err != nil {
return err
}

n, err := io.Copy(file, r)
if err != nil {
return err
}

if err := session.Wait(); err != nil {
return err
}

return nil

我不明白 cmd 变量和 io.Copy 之间的关系,它在哪里以及如何知道要复制哪个文件。我喜欢使用 io.Copy 的想法,但我不知道如何通过 ssh 创建文件并开始使用 io.Copy 向它发送内容。

最佳答案

您也可以使用 sftp 包来实现 - “github.com/pkg/sftp”


func SSHCopyFile(srcPath, dstPath string) error {
config := &ssh.ClientConfig{
User: "user",
Auth: []ssh.AuthMethod{
ssh.Password("pass"),
},
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
}

client, _ := ssh.Dial("tcp", "remotehost:22", config)
defer client.Close()


// open an SFTP session over an existing ssh connection.
sftp, err := sftp.NewClient(client)
if err != nil {
return err
}
defer sftp.Close()

// Open the source file
srcFile, err := os.Open(srcPath)
if err != nil {
return err
}
defer srcFile.Close()

// Create the destination file
dstFile, err := sftp.Create(dstPath)
if err != nil {
return err
}
defer dstFile.Close()

// write to file
if _, err := dstFile.ReadFrom(srcFile); err!= nil {
return err
}
return nil
}

然后像这样调用它

SSHCopyFile("/path/to/local/file.txt", "/path/on/remote/file.txt")

这些是必需的包

"github.com/pkg/sftp"
"golang.org/x/crypto/ssh"

关于go - 在 go 中通过 SSH 发送文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53256373/

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