通过java使用ssh访问远程Linux

简介: 需要做一个监控远程Linux磁盘空间的东西,绞尽脑汁终于发现一个东西。ch.ethz.ssh2。 它可以通过用户名和密码登录可以ssh登录的机器,并且可以执行命令,并将命令显示的东西返回来。

需要做一个监控远程Linux磁盘空间的东西,绞尽脑汁终于发现一个东西。ch.ethz.ssh2。

它可以通过用户名和密码登录可以ssh登录的机器,并且可以执行命令,并将命令显示的东西返回来。

上代码了:

Connection con = null;
			Session session = null;
			BufferedReader dr = null;
			try {
				String ipd = mc.getIpAddress();
				if(ipd.equals("127.0.0.1")){
					con = new Connection(mc.getIpAddress(),2222);
				}else{
					con = new Connection(mc.getIpAddress());
				}
				ConnectionInfo info = con.connect();
				boolean result = con.authenticateWithPassword(mc.getUserName(), mc.getPassword());
				session = con.openSession();
				session.execCommand("df -T");
				InputStream stdout = session.getStdout();
				stdout = new StreamGobbler(session.getStdout());
				dr = new BufferedReader(new InputStreamReader(stdout));
				String line;
				while ((line=dr.readLine()) != null) {
					System.out.println(line);
					if(line.startsWith("/dev/")){
						Pattern p = Pattern.compile("[\\s]+");
						String[] arrs = p.split(line);
						for (String s : arrs) {
							System.out.println(s);
						}
						if(!arrs[1].startsWith("iso")){
							if(Long.parseLong(arrs[4])<5L*1024*1024 || Double.parseDouble(arrs[5])>0.9d){
								doAfterThing(mc, arrs[0]);
							}
						}
					}
				}
			} catch (Exception e) {
				System.err.println(e.getMessage());
			} finally {
				try {
					dr.close();
					session.close();
					con.close();
				} catch (Exception e) {
					e.printStackTrace();
				}
			}

 要注意的地方有两点:

1.

Connection con = new Connection(String ip);

 接收一个远程地址做参数,默认端口是22。如果不是这个端口,需要指定。比如我用的虚拟机,使用了端口转发,所以写成

Connection con = new Connection(mc.getIpAddress(),2222);

 因为的端口是2222.

2.session.getStdout() 的返回值是一个InputStream,但是需要包装后才能用。

刚开始我写成了

InputStream stdout = session.getStdout();
dr = new BufferedReader(new InputStreamReader(stdout));

 怎么也娶不到东西。

后来写为

InputStream stdout  = new StreamGobbler(session.getStdout());

 才好了。StreamGobbler是ch.ethz.ssh2自己的一个类,文档如下:

/**
 * A <code>StreamGobbler</code> is an InputStream that uses an internal worker
 * thread to constantly consume input from another InputStream. It uses a buffer
 * to store the consumed data. The buffer size is automatically adjusted, if needed.
*/

 

 =========================================另外补充一点Java查看本地磁盘信息的方法:

这也是在查找过程中找到的。

 

File[] roots = File.listRoots();
System.err.println("the count of roots is : "+roots.length);
double constm = 1024 * 1024 * 1024 ;
        double total = 0d;
        for (File _file : roots) {
            System.out.println(_file.getPath());
            double total0 = _file.getTotalSpace()/constm,free0=_file.getFreeSpace()/constm,used0=total0-free0;
            System.out.println("totol space = " + total0+" G");
            System.out.print("the free space = " + free0+" G");
            System.out.println("---------- "+free0*100/total0+"% ----------");
            System.out.print("the used space = " + used0+" G");
            System.out.println("---------- "+used0*100/total0+"% ----------");
            System.out.println();
            total+=_file.getTotalSpace();
        }
        System.out.println("the total space of the machine = "+doubleFormat(total/constm));

 代码很简单,不过有一点要注意:getTotalSpace()获得的是这个盘的总容量,getFreeSpace()获得的是剩余容量,还有个方法是getUsableSpace(),这个并不表示已经用了多少,而是磁盘可用空间。通常情况下,这个值和剩余容量是相等的。

 

目录
相关文章
|
5月前
|
域名解析 网络协议 安全
在Linux中,想在命令行下访问某个网站,并且该网站域名还没有解析,如何做?
在Linux中,想在命令行下访问某个网站,并且该网站域名还没有解析,如何做?
|
4月前
|
安全 Linux 网络安全
Linux端的ssh如何升级?
Linux端的ssh如何升级?
396 59
|
2月前
|
监控 Ubuntu Linux
使用VSCode通过SSH远程登录阿里云Linux服务器异常崩溃
通过 VSCode 的 Remote - SSH 插件远程连接阿里云 Ubuntu 22 服务器时,会因高 CPU 使用率导致连接断开。经排查发现,VSCode 连接根目录 ".." 时会频繁调用"rg"(ripgrep)进行文件搜索,导致 CPU 负载过高。解决方法是将连接目录改为"root"(或其他具体的路径),避免不必要的文件检索,从而恢复正常连接。
|
5月前
|
JavaScript Linux 应用服务中间件
【Azure 应用服务】FTP 部署 Vue 生成的静态文件至 Linux App Service 后,访问App Service URL依旧显示Azure默认页面问题
【Azure 应用服务】FTP 部署 Vue 生成的静态文件至 Linux App Service 后,访问App Service URL依旧显示Azure默认页面问题
|
5月前
|
机器学习/深度学习 Ubuntu Linux
在Linux中,如何按照该要求抓包:只过滤出访问http服务的,目标ip为192.168.0.111,一共抓1000个包,并且保存到1.cap文件中?
在Linux中,如何按照该要求抓包:只过滤出访问http服务的,目标ip为192.168.0.111,一共抓1000个包,并且保存到1.cap文件中?
|
5月前
|
Linux 网络安全
Linux开启ssh
Linux开启ssh
48 0
|
5月前
|
JavaScript Linux 容器
【Azure 应用服务】NodeJS项目部署在App Service For Linux环境中,部署完成后应用无法访问
【Azure 应用服务】NodeJS项目部署在App Service For Linux环境中,部署完成后应用无法访问
|
5月前
|
监控 网络协议 Linux
在Linux中,如何使用 tcpdump 嗅探 80 端口的访问看看谁最⾼?
在Linux中,如何使用 tcpdump 嗅探 80 端口的访问看看谁最⾼?
|
5月前
|
安全 Linux 网络安全
在Linux中,使用rsync同步数据时,假如采用的是ssh方式,并且目标机器的sshd端端并不是默认的22端口,该如何做?
在Linux中,使用rsync同步数据时,假如采用的是ssh方式,并且目标机器的sshd端端并不是默认的22端口,该如何做?
|
5月前
|
网络协议 Linux
在Linux中,如何使用iptables 写⼀条规则?把来源IP为192.168.1.101访问本机80端口的包直接拒绝.
在Linux中,如何使用iptables 写⼀条规则?把来源IP为192.168.1.101访问本机80端口的包直接拒绝.