springboot封装linux交互工具类

springboot封装linux交互工具类,第1张

项目中用到linux交互,对此做了封装,作为工具类使用

1、pom.xml


			com.jcraft
			jsch
			0.1.54

2、 LinuxUtil.java

package net.grandhonor.framework.boot.util.util;

import com.jcraft.jsch.ChannelExec;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.io.IOUtils;

import java.io.InputStream;
import java.util.Properties;

/**
 * linux *** 作常用工具类
 *
 * @author wangfenglei
 */
@Slf4j
public class LinuxUtil {
    /**
     * SSH连接端口
     */
    private static int SSH_PORT = 22;
    /**
     * SSH连接超时时间
     */
    private static int CONNECT_TIMEOUT = 30000;

    /**
     * 向linux发送命令
     *
     * @param username 用户名
     * @param password 密码
     * @param ip       IP
     * @param command  命令
     * @return 服务端响应字符串
     */
    public static String sendCommandToLinux(String username, String password, String ip, String command) {
        Session session = null;
        ChannelExec channel = null;
        InputStream inputStream = null;
        try {
            Properties config = new Properties();
            config.put("StrictHostKeyChecking", "no");
            //获取jsch的会话
            session = new JSch().getSession(username, ip, SSH_PORT);
            session.setConfig(config);
            //设置密码
            session.setPassword(password);
            //连接  超时时间30s
            session.connect(CONNECT_TIMEOUT);
            //开启shell通道
            channel = (ChannelExec) session.openChannel("exec");
            inputStream = channel.getInputStream();
            channel.setCommand(command);
            // 获取执行脚本可能出现的错误日志
            channel.setErrStream(System.err);
            channel.connect();
            String result = IOUtils.toString(inputStream, "UTF-8");
            return result;
        } catch (Exception e) {
            log.error(e.toString(), e);
        } finally {
            //断开连接后关闭会话
            session.disconnect();
            channel.disconnect();
            if (inputStream != null) {
                try {
                    inputStream.close();
                } catch (Exception e1) {
                    log.error(e1.toString(), e1);
                }
            }
        }

        return null;
    }

    public static void main(String[] args) {
        String msg = LinuxUtil.sendCommandToLinux("root", "root", "127.0.0.1", "cd /home/grandhonor/opt/demo;sh demo.sh");
        log.info(msg);
    }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/739179.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-28
下一篇 2022-04-28

发表评论

登录后才能评论

评论列表(0条)

保存