• Java 连接linu 执行指令


    引入所需jar

    
    
    	ch.ethz.ganymed
    	ganymed-ssh2
    	262
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    编写工具类

    import ch.ethz.ssh2.Connection;
    import ch.ethz.ssh2.Session;
    import ch.ethz.ssh2.StreamGobbler;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.messaging.Message;
    import org.springframework.stereotype.Component;
    
    import java.io.*;
    import java.util.Locale;
    
    /**
     * @className: ExecUtil
     * @desc: SSH远程指令执行
     * @author: wan.tao
     * @date: 2023-09-22
     * @Version 1.0
     */
    @Slf4j
    @Component
    public class SshExecUtil {
    
        /**
         * 消费异常处理器
         * @return
         */
        public static Connection getConnection(String host,String username,String password) {
            Connection conn = null;
            try {
                conn = new Connection(host);
                conn.connect();
                if (!conn.authenticateWithPassword(username, password)) {
                    throw new RuntimeException("用户名或密码错误!");
                }
    
            }catch (Exception e){
                e.printStackTrace();
            }
            return conn;
        }
    
        /**
         * 执行远程linux命令行
         * @param cmd
         * @return
         * @throws IOException
         */
        public static String remoteExec(String cmd,String host,String username,String password) throws IOException {
            //登录,获取连接
            Connection conn = getConnection(host,username,password);
            Session session = null;
            BufferedReader br = null;
            InputStream is = null;
            StringBuffer res = new StringBuffer();
            try {
                // 开启会话
                session = conn.openSession();
                // 执行命令
                session.execCommand(cmd, "UTF-8");
                // 处理输出内容
                is = new StreamGobbler(session.getStdout());
                br = new BufferedReader(new InputStreamReader(is));
                String line;
                while ((line = br.readLine()) != null) {
                    res.append(line+"\r\n");
                }
            } finally {
                //关闭资源
                try {
                    if (is != null) {
                        is.close();
                    }
                    if (br != null) {
                        br.close();
                    }
                    if (session != null) {
                        session.close();
                    }
                    if (conn != null) {
                        conn.close();
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
            return res.toString();
        }
    
        /**
         * 执行本机linux命令行,与ganymed-ssh2依赖无关,JDK自带功能
         */
        public static String exec(String command) {
            String osName = System.getProperty("os.name");
            try {
                /*系统命令不支持的操作系统Windows XP, 2000 2003 7 8 9 10 11*/
                if (osName.toLowerCase(Locale.ROOT).indexOf("win") != -1) {
                    throw new RuntimeException("不支持的操作系统:" + osName);
                }
                Runtime rt = Runtime.getRuntime();
                Process process = rt.exec(command);
    
                LineNumberReader br = new LineNumberReader(
                        new InputStreamReader(
                                process.getInputStream()));
                StringBuffer sb = new StringBuffer();
                String line;
                while ((line = br.readLine()) != null) {
                    sb.append(line).append("\n");
                }
                return sb.toString();
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117

    测试

    public class Test{
    
        @Test
        public void test1() throws IOException {
            String s = SshExecUtil .remoteExec("ifconfig", "192.168.1.10", "root", "root");
            System.out.println(s);
        }
        
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    下载地址

    jrebel

    激活

    guidgen

    其他真的很简单QAQ!

    github
    http://127.0.0.1:8888/132d042c-3b1a-4c45-9044-b7897c3de788

  • 相关阅读:
    Tomcat配置SSL证书别名tomcat无法识别密钥项
    2022全球智博会 打开非凡之城的未来“穿越门”
    系统架构之微服务架构
    国产自研BI系统,更懂中国企业数据分析需求
    Java集合(二)
    基于JAVA课程在线反馈系统计算机毕业设计源码+系统+mysql数据库+lw文档+部署
    函数式编程
    MQTT基础--MQTT 客户端和代理以及 MQTT 服务器和连接建立说明:第 3 部分
    [linux][命令]linux文件操作命令大全
    设计模式:命令模式
  • 原文地址:https://blog.csdn.net/qq_34755766/article/details/133162416