当前位置:  技术问答>linux和unix

ssh登陆后 怎么可以去执行命令,然后得到返回结果

    来源: 互联网  发布时间:2016-04-26

    本文导语:  找了一个程序,但每次都返回的是欢迎信息,并没将“get system cpu usage” 结果返回到系统,请高手帮忙分析下。 try { /* Create a connection instance */ Connection conn = new Connection(hostname); /* Now connect */ ...

找了一个程序,但每次都返回的是欢迎信息,并没将“get system cpu usage” 结果返回到系统,请高手帮忙分析下。



try
{
/* Create a connection instance */

Connection conn = new Connection(hostname);

/* Now connect */

conn.connect();

/* Authenticate.
 * If you get an IOException saying something like
 * "Authentication method password not supported by the server at this stage."
 * then please check the FAQ.
 */

boolean isAuthenticated = conn.authenticateWithPassword(username, password);

if (isAuthenticated == false)
throw new IOException("Authentication failed.");

/* Create a session */

Session sess = conn.openSession();

sess.execCommand("get system cpu usage");
System.out.println("Here is some information about the remote host:");

/* 
 * This basic example does not handle stderr, which is sometimes dangerous
 * (please read the FAQ).
 */

InputStream stdout = new StreamGobbler(sess.getStdout());
BufferedReader br = new BufferedReader(new InputStreamReader(stdout));

while (true)
{
String line = br.readLine();
if (line == null)
break;
System.out.println(line);
}

/* Show exit status, if available (otherwise "null") */

System.out.println("ExitCode: " + sess.getExitStatus());

/* Close this session */

sess.close();

/* Close the connection */

conn.close();

}
catch (IOException e)
{
e.printStackTrace(System.err);
System.exit(2);
}

|
是不是因为环境变量有差异?

    
 
 

您可能感兴趣的文章:

  • windows机器 cmd命令下能否使用什么命令通过ssh连接到远程linux机器
  • 急求linux的ssh命令
  • Xmanager可以连上,ssh命令连不上远程linux
  • ssh中输入命令前的#号没有怎么办?
  • 怎么用SSH用命令行查看linux日志信息
  • linux 批处理命令 ssh远程登录 获取资源
  • ssh 下(root) 怎么停止和启动 apache ?(什么命令)
  • super ssh awk三个命令组合的奇怪问题
  • ssh到远程机器执行命令的问题
  • 為什麼通過SSH連接到LINUX后,使用LS 命令后部分會出現"亂碼"
  • 帮忙看看, 这个脚本的SSH命令为何在循环中永远只执行一次?
  • securecrt 用SSh 登录Ubuntu 服务器, 命令行为什么不显示用户名和目录
  • 请教:SSH登陆执行的情况下,有没有可能知道某一次登陆都执行了什么命令?
  • ssh提示:[: =: unary operator expected;rm、less、vi、su等命令提示:Segmentation fault,可能是什么故障?
  • 为什么scp命令可以,ssh就不行呢
  • ssh的root登录在history -w之后~/.bash_history删除相关行为什么重新登录历史命令还在?
  • 关于Linux的ssh命令
  • 怎么样实现aix5机器上用ssh命令自动登录?
  • 如何通过SSH客户端或者命令同时传1文件到多个服务器目录上?
  • 请问linux下怎么用命令行的方式查看系统自动运行的程序?(因为我只能通过ssh来查看)
  • SSH整合中 hibernate托管给Spring得到SessionFactory
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 如何设置ssh远程执行时的超时时间
  • SSH 远程执行解压tar包
  • 使用ssh远程执行程序出现问题
  • 请教一个问题,CRONTAB执行脚本和SSH登陆后调用脚本有什么不同?
  • ssh调用远程主机的sh脚本,怎么按远程环境执行
  • ssh批量登录并执行命令的python实现代码
  • python使用paramiko模块实现ssh远程登陆上传文件并执行
  • ssh反向登录和ssh跳转的区别
  • C++语言的SSH客户端库 NetSieben SSH Library
  • 我想问一下,open ssh和ssh有什么区别?!
  • 纯Java的SSH-2协议包 Orion SSH2
  • 高性能的 SSH/SCP HPN-SSH
  • client端用ssh登陆SSH失败
  • ssh-keygen设置ssh无密码登录失败
  • 求网络管理员或SSH熟手 关于远程SSH登陆的IP地址问题
  • 急:请问SSH2链接是什么意思?在windows终端怎样具体操作来通过SSH2链接管理linux服务器?
  • 全注解的SSH框架 ssh-base-framework
  • ssh 登录出现:ssh_exchange_identification: Connection closed by remote host
  • putty实现自动登录的方法(ssh和ssh2)
  • 关于telnet,ssh1,ssh2的问题
  • "SSH Secure Shell Client" 和 "F-Secure SSH Client Trial"是同一个软件吗
  • ssh(ssh-keygen)配置免输入密码登录远程主机的方法
  • ssh连接时报错 ssh: connect to host 192.168.9.92 port 22: No route to host
  • 如何设置SSH用非root用户登录,求完整步骤
  • 如何利用Ganymed SSH-2模拟SSH操作
  • debian 查看ssh
  • 在Linux中如何部署项目(SSH)


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3