I have an Windows/Java application which executes commands on a linux box. One particular command kills processes, but this intermittently fails, just does nothing, not even an exception. public static Session getSession(String ipAddressOfLinuxBox) { try { JSch jsch = new JSch(); Session session = jsch.getSession("root", ipaddress, 22); session. setPassword("blahblah"); session.setConfig("StrictHostKeyChecking"; "no"); } catch (JSchException je) {throw je;} } public static List<string> executeExecCommand(String...