Java运用ganymed-ssh2-build210.jar包远程连接操作linux服务器

(1) 脚本命令的输入,和显示内容的输出

//创建连接,传入一个需要登陆的ip地址和port

Connection conn = new Connection(IP, SERVER_SSH_PORT);

//链接

conn.connect();

//账号,密码验证

boolean isAuthenticated = conn.authenticateWithPassword(admin, pwd1);

if (isAuthenticated == false) {
throw new IOException("密码不正确!");
}

打开一个session,有点象Hibernate的session ,执行你需要的linux 脚本命令 。
Session sess = conn.openSession();

方法一.直接使用封装好的执行命令

sess.execCommand("last");

方法二.使用脚本输入流输入:必须添加一下语句开启:

session.requestDumbPTY();

session.startShell();

即可获取输入输出流

 

InputStream in = sess.getStdout();

InputStream err = sess.getStderr();

OutputStream out = sess.getStdin()

使用下面语句直接吧字符串命令写入即可:

session.getStdin().write((cmd + "\n").getBytes());

(2) 下载和上传文件的字节流:

先创建SCPClient对象,用于上传和下载操作:

SCPClient client = new SCPClient(conn);

下载文件字节流:

private static byte[] getRemoteFileBytes(SCPClient client, String remoteFile) throws IOException {
		ByteArrayOutputStream bos = new ByteArrayOutputStream();
		client.get(remoteFile, bos);
		bos.flush();
		byte[] bytes = bos.toByteArray();
		bos.close();
		return bytes;
	}

上传文件字节流:

client.put(fileBytes, fileName, pathFile);

直接传输文件

 

//服务器端的文件下载到本地的目录下

scpClient.getFile("/home/oracle/RUNNING.txt", "C:/");

//将本地文件上传到服务器端的目录下

scp.putFile("C:/RUNNING.txt", "/home/oracle");

 

输入命令并显示结果的方法参考:

private static boolean sessionExcuteEnd = false;
private static long sessionLogOutTime = System.currentTimeMillis();

/**
	 * 执行命令
	 * @param session
	 * @param cmds
	 * @throws IOException
	 */
	public static void excuteCommands(Session session, String... cmds) throws IOException {
		sessionExcuteEnd = false;
		final InputStream is = new StreamGobbler(session.getStdout());
		new Thread() {
			public void run() {
				BufferedReader br = new BufferedReader(new InputStreamReader(is));
				while (true) {
					try {
						sessionLogOutTime = System.currentTimeMillis();
						String line = br.readLine();
						if (line == null) break;
						System.out.println(line);
					} catch (IOException e) {
						e.printStackTrace();
					}
				}
				try {
					is.close();
					br.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
				System.out.println("END");
				sessionExcuteEnd = true;
			}
		}.start();
		session.requestDumbPTY();
		session.startShell();
		for (String cmd : cmds) {
			//2秒没日志响应,则输出下一步命令
			while (System.currentTimeMillis() < sessionLogOutTime + 2000) {
				try {
					Thread.sleep(2000);
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
			}
			sessionLogOutTime = System.currentTimeMillis();
			session.getStdin().write((cmd + "\n").getBytes());
		}
		while (!sessionExcuteEnd) {
			if (System.currentTimeMillis() - sessionLogOutTime > 5000) {//5秒未打印出日志,结束
				session.close();		
				break;
			}
			try {
				Thread.sleep(1000);
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
		}
	}

附加一个简单的实例运用:

public class Update {

	private static int countSession = 0;

	public static void main(String[] args) {
		try {
			// 更新文件准备
			List<String[]> configlist = Config.loadConfigs();
			File updateFile = new File("./updatefiles/server.zip");
			if (!updateFile.exists()) {
				System.out.println("更新文件server.zip不存在");
				return;
			}
			System.out.println(" 文件最后修改时间:" + new Timestamp(updateFile.lastModified()).toString());
			/**
			 * 读取文件字节流
			 */
			final byte[] updateFileBytes = FileAndByteUtils.readFromFile(updateFile);

			Scanner scan = new Scanner(System.in);
			System.out.println("start ? (yes/no)");
			if (!scan.nextLine().toLowerCase().equals("yes")) {
				System.out.println("exit");
				System.exit(0);
			}
			// 开始
			for (final String[] configs : configlist) {
				// configs[0]: id ;configs[1] : ip
				// 开始连接
				if (configs == null) {
					return;
				}
                /**连接*/
				final Connection conn = new Connection(configs[1], Config.PORT);
				conn.connect();
				/**账号验证*/
                boolean isAuthenticated =    
                    conn.authenticateWithPassword(Config.ADMIN,Config.PWD);
				if (isAuthenticated == false) {
					System.out.println("密码错误");
					throw new IOException("Authentication failed.");
				}
				countSession++;
				// 打开session
				final Session session = conn.openSession();
				// 上传文件
				SCPClient client = new SCPClient(conn);
				client.put(updateFileBytes, "xlsbz_server.zip", "/app/mhfx/");
				System.out.println(configs[0] + "区服务器更新数据上传 完毕~~~~");
				new Thread(new Runnable() {
					public void run() {
						try {
							session.requestDumbPTY();
							session.startShell();
							OutputStream fout = session.getStdin();
							// 输入命令
							System.out.println(configs[0] + " :START");
							fout.write(("bash xlsbz_server/bin/telnet.sh" + "\n").getBytes());
							Thread.sleep(1000);
							fout.write(("freeze" + "\n").getBytes());
							Thread.sleep(60000);
							fout.write(("quit" + "\n").getBytes());
							Thread.sleep(60000);
							// 完成关闭Session和连接
							session.close();
							Thread.sleep(1000);
							conn.close();
							Thread.sleep(1000);
							countSession--;
							System.out.println(configs[0] + " : END");
						} catch (IOException e) {
							// TODO Auto-generated catch block
							e.printStackTrace();
						} catch (InterruptedException e) {
							// TODO Auto-generated catch block
							e.printStackTrace();
						}
					}
				}).start();
				final InputStream fin = session.getStdout();
				new Thread(new Runnable() {
					@Override
					public void run() {
						BufferedReader br = new BufferedReader(new InputStreamReader(fin));
						String line = null;
						try {
							while ((line = br.readLine()) != null) {
								System.out.println(configs[0] + ": " + line);
								if (line.contains("quit")) {
									continue;
								}
								if ((line.contains("command not found") && !line.startsWith("-bash: A:"))
										|| line.contains("no cmd")) {
									System.out.println("出错 command not found");
									System.exit(0);
								}
							}
						} catch (IOException e) {
							e.printStackTrace();
						}
					}
				}).start();
			}
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
		while (true) {
			if (countSession == 0) {
				break;
			}
			System.out.println("正在运行中");
			try {
				Thread.sleep(30000);
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
		}
		System.out.println("finsh");
	}

}

 

ch.ethz.ssh2的API: 相关API说明

下载地址: Ganymed SSH-2 for Java

java远程访问linux服务器操作 远程执行shll脚本或者命令、上传下载文件 package com.szkingdom.kfit.bank.ccbDirectShortcut.helper; import ch.ethz.ssh2.Connection; import ch.ethz.ssh2.SCPClient; import ch.ethz.ssh2.Session; import ch.ethz.ssh2.StreamGobbler; import common.Logger; import org.apache.commons.lang.StringUtils; import java.io.*; import java.util.logging.Level; /** * SCP远程访问Linux服务器读取文件 * User: boyer * Date: 17-12-7 * Time: 下午3:22 * To change this template use File | Settings | File Templates. */ public class ScpClient { //字符编码默认是utf-8 private static String DEFAULTCHART="UTF-8"; protected static org.apache.log4j.Logger log = org.apache.log4j.Logger.getLogger(ScpClient.class); static private ScpClient instance; private Connection conn; static synchronized public ScpClient getInstance(String IP, int port, String username, String passward) { if (instance == null) { instance = new ScpClient(IP, port, username, passward); } return instance; } public ScpClient(String IP, int port, String username, String passward) { this.ip = IP; this.port = port; this.username = username; this.password = passward; } private String ip; private int port; private String username; private String password; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public int getPort() { return port; } public void setPort(int port) { this.port = port; } /** * 远程登录linux的主机 * @author Ickes * @since V0.1 * @return * 登录成功返回true,否则返回false */ public Boolean login(){ boolean flg=false; try { conn = new Connection(ip); conn.connect();//连接 flg=conn.authenticateWithPassword(username, password);//认证 } catch (IOException e) { e.printStackTrace(); } return flg; } /** * 下载文件 * @param remoteFile 远程文件地址 * @param localTargetDirectory 本地目录地址 */ public void getFile(String remoteFile, String localTargetDirectory) { try { if(login()){ SCPClient client = new SCPClient(conn); client.get(remoteFile, localTargetDirectory); conn.close(); } } catch (IOException ex) { log.error(ex); } } /** * 上传文件 * @param localFile 本地目录地址 * @param remoteTargetDirectory 远程目录地址 */ public void putFile(String localFile, String remoteTargetDirectory) { try { if(login()){ SCPClient client = new SCPClient(conn); client.put(localFile, remoteTargetDirectory); conn.close(); } } catch (IOException ex) { log.error(ex); } } /** * 上传文件 * @param localFile 本地目录地址 * @param remoteFileName 重命名 * @param remoteTargetDirectory 远程目录地址 * @param mode 默认0600权限 rw 读写 */ public void putFile(String localFile, String remoteFileName,String remoteTargetDirectory,String mode) { try { if(login()){ SCPClient client = new SCPClient(conn); if((mode == null) || (mode.length() == 0)){ mode = "0600"; } client.put(localFile, remoteFileName, remoteTargetDirectory, mode); //重命名 ch.ethz.ssh2.Session sess = conn.openSession(); String tmpPathName = remoteTargetDirectory +File.separator+ remoteFileName; String newPathName = tmpPathName.substring(0, tmpPathName.lastIndexOf(".")); sess.execCommand("mv " + remoteFileName + " " + newPathName);//重命名回来 conn.close(); } } catch (IOException ex) { log.error(ex); } } public static byte[] getBytes(String filePath) { byte[] buffer = null; try { File file = new File(filePath); FileInputStream fis = new FileInputStream(file); ByteArrayOutputStream byteArray = new ByteArrayOutputStream(1024*1024); byte[] b = new byte[1024*1024]; int i; while ((i = fis.read(b)) != -1) { byteArray.write(b, 0, i); } fis.close(); byteArray.close(); buffer = byteArray.toByteArray(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return buffer; } /** * @author Ickes * 远程执行shll脚本或者命令 * @param cmd * 即将执行的命令 * @return * 命令执行完后返回的结果值 * @since V0.1 */ public String execute(String cmd){ String result=""; try { if(login()){ Session session= conn.openSession();//打开一个会话 session.execCommand(cmd);//执行命令 result=processStdout(session.getStdout(),DEFAULTCHART); //如果为得到标准输出为空,说明脚本执行出错了 if(StringUtils.isBlank(result)){ result=processStdout(session.getStderr(),DEFAULTCHART); } conn.close(); session.close(); } } catch (IOException e) { e.printStackTrace(); } return result; } /** * @author Ickes * 远程执行shll脚本或者命令 * @param cmd * 即将执行的命令 * @return * 命令执行成功后返回的结果值,如果命令执行失败,返回空字符串,不是null * @since V0.1 */ public String executeSuccess(String cmd){ String result=""; try { if(login()){ Session session= conn.openSession();//打开一个会话 session.execCommand(cmd);//执行命令 result=processStdout(session.getStdout(),DEFAULTCHART); conn.close(); session.close(); } } catch (IOException e) { e.printStackTrace(); } return result; } /** * 解析脚本执行返回的结果集 * @author Ickes * @param in 输入流对象 * @param charset 编码 * @since V0.1 * @return * 以纯文本的格式返回 */ private String processStdout(InputStream in, String charset){ InputStream stdout = new StreamGobbler(in); StringBuffer buffer = new StringBuffer();; try { BufferedReader br = new BufferedReader(new InputStreamReader(stdout,charset)); String line=null; while((line=br.readLine()) != null){ buffer.append(line+"\n"); } } catch (UnsupportedEncodingException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return buffer.toString(); } }
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值