如何使用Java Jsch运行Docker特定命令

时间:2018-04-02 17:17:45

标签: java selenium docker jsch

我尝试在java中执行以下步骤 1. ssh到远程机器(使用jsch完成),如下所示。

import java.io.InputStream;
import com.jcraft.jsch.Channel;
import com.jcraft.jsch.ChannelExec;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;
public class JSchExampleSSHConnection {
public static void main(String[] args) {
    String host="hostname";
    String user="sshuser";
    String password="sshpwd";
    String command1="ls";
    try{

        java.util.Properties config = new java.util.Properties(); 
        config.put("StrictHostKeyChecking", "no");
        JSch jsch = new JSch();
        Session session=jsch.getSession(user, host, 22);
        session.setPassword(password);
        session.setConfig(config);
        session.connect();
        System.out.println("Connected");

        Channel channel=session.openChannel("exec");
        ((ChannelExec)channel).setCommand(command1);
        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("exit-status: "+channel.getExitStatus());
            break;
          }
          try{Thread.sleep(1000);}catch(Exception ee){}
        }
        channel.disconnect();
        session.disconnect();
        System.out.println("DONE");
    }catch(Exception e){
        e.printStackTrace();
    }

}
}
  1. 输入sudo su和密码。使用以下命令完成。         ((ChannelExec)频道).setCommand(&#34; echo&#39;密码&#39; | sudo -S docker ps -a&#34;);
  2.   

    无法继续执行后续步骤

    1. 输入docker exec -it dockername bash。
    2. 输入python manage.py cronName。
        

      我尝试了以下步骤来实现步骤3和4.尝试使用Runtime.getRuntime()。exec(&#34; docker exec&gt; -it dockername bash&#34;)。有没有其他方法来运行这些命令。对此有任何建议。

1 个答案:

答案 0 :(得分:0)

通过以下方式分配伪终端

docker exec -it <container-name> <command>

用于在docker运行容器中执行命令,例如:

.video {
    position: absolute; 
    right: 0; 
    bottom: 0;
    min-width: 100vw; /* you can changes size*/
    min-height: 100vh;
    z-index: -100;
    background-size: cover;
    overflow: hidden;
}