I am trying to automate a step of doing some things with JMX.
It works for development environment. but when it comes to Production which is protected behind firewall, i need to make a SSH tunnel and then only i can access the JMX console.
Earlier, i used putty or ssh to create tunnel and run my java program locally. Since we used 1-2 host, it was easier. now it became upto 10 host. now that i dont want to create tunnel every time and disconnect and run the program.
what i wanted to do is, automatically create SSH tunnel using JSch and connect JMX with the java program. i tried to do this but its not working.
I am getting java.rmi.ConnectException: Connection refused to host: localhost; nested exception is: java.net.ConnectException: Connection refused: connect
it is possible to do this?