Hey,
I'm developing a plugin that needs to connect to ssh server in a post function.
I tried creating a java class that ensure that connection and call that class in the execute() method in my post function but no luck and also I added the java code directly in the execute() method but the plugin become disabled.
I thought about doing this using Groovy script but I couldn't figure out how to start !!
Any help will be appreciated :D
Hi,
Some time ago, I tried to connect via ssh to another server using a groovy script on script console in JIRA and it worked.
Wish it still working and helps you.
@Grab(group='com.jcraft', module='jsch', version='0.1.46')
import com.jcraft.jsch.JSch
import com.jcraft.jsch.Session
def host = ''
def user = ''
def pass = ''
def config = new Properties()
config.put("StrictHostKeyChecking", "no")
JSch jsch = new JSch()
def session=jsch.getSession(user, host, 22)
session.setPassword(pass)
session.setConfig(config)
session.connect()
session.disconnect()
Regards,
Marcos
Thank you for your reply ! I figured it out in Java ! here's what I wrote :
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;
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");
} catch (Exception e)
{
e.printStackTrace();
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
It looks good!
If it works to you it's awesome then!
Regards,
Marcos.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Could you please elaborate on where exactly the pom.xml is located as well as how to add the relevant dependency?
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Adiel Segal and @Wissal Chaoued
I'm the same question about the add dependecy on the pom.xml.
Can you help me, please?
Any help will be appreciated too!
Gabriela
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.