Java代码中,执行服务器上的shell脚本

1.解决什么问题:代码在118服务器上,shell脚本在119服务器上。118代码调用shell脚本。

2.其它问题:如果代码和脚本在同一服务器上,简单多了。

移步https://blog.csdn.net/vcfriend/article/details/81226632

思路:因为shell脚本在119上,所以要连接119服务器才行。用到了了jcraft依赖,去maven库搜索一下,加进来。

main方法教你如何调用

import java.io.InputStream;
 
import com.jcraft.jsch.Channel;
import com.jcraft.jsch.ChannelExec;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.JSchException;
import com.jcraft.jsch.Session;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * java 登录linux系统,并读取执行shell命令结果
 * @author zyb
 * 2020-07-06
 */
public class LinuxShell {
 	private static Logger log = LoggerFactory.getLogger(LinuxShell.class);
	private static Session session;
 
	/**
	 * 远程登录
	 * @param host 主机ip
	 * @param port 端口号,默认22
	 * @param user 主机登录用户名
	 * @param password 主机登录密码
	 * @return
	 * @throws JSchException
	 */
	public static void login(String host, int port, String user,String password)  {
		try {
			JSch jsch = new JSch();
			session = jsch.getSession(user, host, port);
			session.setPassword(password);
			// 设置第一次登陆的时候提示,可选值:(ask | yes | no)
			session.setConfig("StrictHostKeyChecking", "no");
			// 连接超时
			session.connect(1000*10);
 
		} catch (JSchException e) {
			log.info("登录时发生错误!");
			e.printStackTrace();
		}
	}
 
	/**
	 * 执行shell脚本
	 * @param command shell命令脚本
	 * @return
	 * @throws Exception
	 */
	public static String executeShell(String command) throws Exception {
		byte[] tmp = new byte[1024];
		// 命令返回的结果
		StringBuffer resultBuffer = new StringBuffer();
		Channel channel = session.openChannel("exec");
		ChannelExec exec = (ChannelExec) channel;
		// 返回结果流(命令执行错误的信息通过getErrStream获取)
		InputStream stdStream = exec.getInputStream();
		exec.setCommand(command);
		exec.connect();
		try {
			// 开始获得SSH命令的结果
			while (true) {
				while (stdStream.available() > 0) {
					int i = stdStream.read(tmp, 0, 1024);
					if (i < 0) break;
					resultBuffer.append(new String(tmp, 0, i));
				}
				if (exec.isClosed()) {
//					System.out.println(resultBuffer.toString());
					break;
				}
				try {
					Thread.sleep(200);
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
		} finally {
			//关闭连接
			channel.disconnect();
		}
		return resultBuffer.toString();
	}
 
	/**
	 * 关闭连接
	 */
	public static void close() {
		if (session.isConnected())
			session.disconnect();
	}
	
	/**
	 * 测试
	 * @param args
	 */
	public static void main(String[] args) {
 
		String ip="192.168.1.119";
		String username="用户名";
		String password="密码";
		
		LinuxShell linux = new LinuxShell();
		
		linux.login(ip, 22, username,password);
		//要执行的脚本命令
		String command = "sh /dir/test/aaa_do.sh ";
		try {
			String result = linux.executeShell(command);
			System.out.println(result);
			linux.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}

 

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章