We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48f855d commit 0834fd2Copy full SHA for 0834fd2
README.md
@@ -0,0 +1,16 @@
1
+# JSCHConnectionLogger
2
+Simple program to test JSCH connection and log output to console.
3
+
4
+To rum the program simply compile it with maven:
5
6
+mvn clean build
7
8
+This will generate a jar file, just run the test like so:
9
10
+For Java10:
11
+java --class-path "JSchSample-1.0.jar:jsch-0.1.53.jar" com.appdynamics.tests.jschsample.JSchExampleSSHConnection <target_host> <user> <identity_file>
12
13
+For Java8:
14
+java -classpath "JSchSample-1.0.jar:jsch-0.1.53.jar" com.appdynamics.tests.jschsample.JSchExampleSSHConnection <target_host> <user> <identity_file>
15
16
+Important that the jsch-0.1.53.jar file must be on the same directory as the sample program is being executed.
0 commit comments