• 使用Java管理千台规模Linux服务器_入门


    http://www.oschina.net/code/snippet_222919_11734

    代码分享

    当前位置:
    代码分享 » Java  » 网络编程
     
    分享到: 
    收藏 +43
    0
    前东家是一家游戏公司,老板很好,当时工作也留下了很多自己原创的管理脚本。现在分享一下在办公环境使用Java、Jsch登录VPN管理Linux的脚本(此处实现JAVA调用Linux上备份Mysql的shell作为示例),希望对运维的朋友有帮助,尽快从繁杂的服务器管理工作中脱离出来。 

    主要的实现思路:

            如果需要先登录VPN才能连接游戏服务器,需要将游戏服务器的ssh端口(一般是22)映射到本地办公电脑的端口上(如5555),然后ssh连接本地办公电脑的5555端口,这样就可以连接到游戏服务器,并可以管理游戏服务器了。

    当您学会通过VPN连接Linux服务器后,如果只在内网环境,不使用VPN,就更简单了,此外不再详述。Jsch的example里也有介绍。 
     
    标签: CentOS JSch
     

    代码片段(1)[全屏查看所有代码]

    1. [代码]使用Jsch透过VPN     跳至 [1] [全屏预览]

    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
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    package com.daily.wednesday;
     
    import java.io.IOException;
    import java.io.InputStream;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
     
    import com.daily.util.DataBaseConnection;
    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;
     
    public class BackUpMysql3 {
        public static void main(String args[]) {
            // 读取数据库配置
            DataBaseConnection dataBaseConnection = new DataBaseConnection();
            String dataBaseConfigForWrite[] = new String[3];
            dataBaseConfigForWrite = dataBaseConnection.loadDataConfig();
     
            Connection conn = null;// 数据库连接
            Statement stmt = null;// 数据库表达式
            ResultSet rs = null; // 结果集
            int rowcount = 0;// 总记录数
            String sql = "select * from servers_maint_wednesday";
     
            try {
                conn = DriverManager.getConnection(dataBaseConfigForWrite[0],
                        dataBaseConfigForWrite[1], dataBaseConfigForWrite[2]);
                stmt = conn.createStatement();
                rs = stmt.executeQuery(sql);
                rs.last();
                rowcount = rs.getRow();// 总记录数
                rs = stmt.executeQuery(sql);
            } catch (SQLException e) {
                e.printStackTrace();
            }
            // 定义游戏服务器IP的数组,游戏服务器IP存在数据库中。
            String privateIpaddress[] = new String[rowcount];
            String remark[] = new String[rowcount];// 定义游戏区名称
            String programPath[] = new String[rowcount];// 定义程序路径
            String backMysqlShellPath[] = new String[rowcount];// 定义mysql备份脚本路径
     
            int j = 0;
            try {
                while (rs.next()) {
                    privateIpaddress[j] = rs.getString("privateipaddress");
                    remark[j] = rs.getString("remarks");
                    programPath[j] = rs.getString("programpath");
                    backMysqlShellPath[j] = rs.getString("backmysqlshellpath");
                    j++;
                }
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                try {
                    if (rs != null) {
                        rs.close();
                    }
                    if (stmt != null) {
                        stmt.close();
                    }
                    if (conn != null) {
                        conn.close();
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
     
            // 调用mysql备份方法
            for (int n = 0; n < privateIpaddress.length; n++) {
                try {
                    try {
                        backUpMysql(privateIpaddress[n], backMysqlShellPath[n],remark[n]);
                    } catch (IOException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                } catch (JSchException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
     
        }
        /**
         * 备份mysql数据库的方法
         * @param privateip
         * @param backMysqlShellPath
         * @throws JSchException
         * @throws IOException
         */
        public static void backUpMysql(String privateip, String backMysqlShellPath, String remark)
                throws JSchException, IOException {
            // 登录到服务器
            int rport;
            JSch jsch = new JSch();
            String host = "dl.dengdie.com"; //此处为VPN服务器地址
            String user = "admin"; //VPN用户名
            Session sessionForBack = jsch.getSession(user, host, 22);
            rport = 22;
            sessionForBack.setPassword("&*&&&&lalaflls"); //VPN密码
            java.util.Properties config = new java.util.Properties();
            config.put("StrictHostKeyChecking", "no");
            sessionForBack.setConfig(config);
            sessionForBack.connect();//登录到VPN服务器
             
            // 建立与游戏服务器的ssh转发连接:即将游戏服务器的22号ssh端口映射的本地办公电脑的53238端口。     
            sessionForBack.setPortForwardingL(53238, privateip, rport);
     
            try {
                JSch jschToBack = new JSch();
     
                Session sessionToBack = jschToBack.getSession(user, "127.0.0.1",
                        53238); //连接本地办公电脑的53238端口,就相当于连接了游戏服务器的22号端口。
                sessionToBack.setPassword("&*&&&&lalaflls");
                sessionToBack.setConfig(config);
                sessionToBack.connect();
                //backMysqlShellPath实际上是游戏服务器上备份Mysql数据库的一个脚本,此脚本请您自行实现,网上很多实例。
                String command = backMysqlShellPath;
                //打开执行命令的隧道,并执行命令。
                Channel channel = sessionToBack.openChannel("exec");
                ((ChannelExec) channel).setCommand(command);
                channel.setInputStream(null);
                ((ChannelExec) channel).setErrStream(System.err);
                InputStream in = channel.getInputStream();
                channel.connect();
     
                byte[] tmp = new byte[1024];
                while (true) {
                    while (in.available() > 0) {
                        int i = in.read(tmp, 0, 1024);
                        if (i < 0)
                            break;
                        System.out.print(new String(tmp, 0, i));
                    }
                    if (channel.isClosed()) {
                        System.out.println(remark + "Mysql备份完毕!");
                        System.out.println("exit-status: "
                                + channel.getExitStatus());
                        break;
                    }
                    try {
                        Thread.sleep(1000);
                    } catch (Exception ee) {
                    }
                }
                channel.disconnect();
                sessionToBack.disconnect();
                sessionForBack.disconnect();
            } catch (Exception e) {
                System.out.println(e);
            }
        }
    }
  • 相关阅读:
    Python3编写网络爬虫11-数据存储方式四-关系型数据库存储
    Python3编写网络爬虫10-数据存储方式三-CSV文件存储
    Python3编写网络爬虫09-数据存储方式二-JSON文件存储
    Python3编写网络爬虫08-数据存储方式一-文件存储
    Python3编写网络爬虫07-基本解析库pyquery的使用
    Python3编写网络爬虫06-基本解析库Beautiful Soup的使用
    Python3编写网络爬虫05-基本解析库XPath的使用
    Python3编写网络爬虫04-爬取猫眼电影排行实例
    LeetCode455 分发饼干(简单贪心—Java优先队列简单应用)
    LeetCode874 模拟行走机器人(简单模拟—Java之HashSet简单应用)
  • 原文地址:https://www.cnblogs.com/donaldlee2008/p/5309508.html
Copyright © 2020-2023  润新知