ssh
リモートホストにアクセスし、その後リモートでコマンドを実行できるプログラムがあります。コマンドは動作mkdir
しcd
ますが、コマンドを実行しようとするとsudo su - username
、プログラムがハングします。私のコードに欠けている/間違っているものがあるかどうか疑問に思っていました。
JSch jSch = new JSch();
Channel channel = null;
Session session = null;
InputStream in = null;
String username;
OutputStream os = null;;
try {
Properties conf = new Properties();
conf.put("StrictHostKeyChecking", "no");
jSch.addIdentity("id_rsa");
jSch.setConfig(conf);
session = jSch.getSession("username", "hostname", 22);
String cmd = "mkdir test";
session.connect(); // creating the ssh connection
channel = (ChannelExec) session.openChannel("exec");
((ChannelExec)channel).setCommand(cmd);
channel.setInputStream(null);
in = channel.getInputStream(null);
channel.connect();
byte[] tmp = new byte[1024];
while (true) {
while (in.available() > 0) {
int i = in.read(tmp, 0, 1024);
if (i < 0) {
break;
}
}
if (channel.isClosed()) {
break;
}
try {
Thread.sleep(1000); // to wait for long running process ..
} catch (Exception ee) {
}
String value = new String(tmp);
System.out.println("input stream " + value);
}
}catch(Exception e){
e.printStackTrace();
}finally{
channel.disconnect();
session.disconnect();
if(in!=null)
in.close();
}
また、ssh
このホストから別のホストに移動sudo
する必要があるため、基本的にはssh
、この問題が修正されたら、ゲートウェイのようなものを介してリモートホストに接続し、データベースに接続する必要があります。
これについての光は大歓迎です。
ありがとう。