RT。听说用Java能使用SSH+SCP实现在代码中直接执行远程linux命令,node 有没有类似的功能,或者工具?
直接调用 Sholl 命令行不?
{exec} = require "child_process" exec "ssh [email protected] 'ls'"
ssh user@host ‘ls’ 并不是马上返回结果,而是要求输入密码 有没有一种方法,是预先建立好连接,通过验证。后面每次发送命令都可以直接执行?
firstly, google:ssh login without password. get the result and try
我是添加了公钥的, 倒忘了这点… 如果加公钥可以的话