我试图使用JSch来自动化一个流程,在这个流程中,我们的用户必须ssh到特定的工作站来运行GUI应用程序(由于许可问题)。所有工作站都在运行CentOS Linux。该过程将涉及用户单击其机器上的GUI应用程序中的按钮,输入其密码,并且应用程序将处理ssh并在远程机器上打开GUI应用程序。我尝试使用代码自己实现X11转发;当我尝试在远程计算机上运行任何GUI应用程序时,它将进行身份验证和连接但挂起。我可以运行诸如uptime
之类的程序并接收文本响应,它告诉我ssh连接正在工作,但X11转发没有。当这不起作用时,我复制并粘贴了此处显示的示例代码:
/* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- */
/**
* This program will demonstrate X11 forwarding.
* $ CLASSPATH=.:../build javac X11Forwarding.java
* $ CLASSPATH=.:../build java X11Forwarding
* You will be asked username, hostname, displayname and passwd.
* If your X server does not run at 127.0.0.1, please enter correct
* displayname. If everything works fine, you will get the shell prompt.
* Try X applications; for example, xlogo.
*
*/
import com.jcraft.jsch.*;
import java.awt.*;
import javax.swing.*;
public class X11Forwarding{
public static void main(String[] arg){
String xhost="127.0.0.1";
int xport=0;
try{
JSch jsch=new JSch();
String host=null;
if(arg.length>0){
host=arg[0];
}
else{
host=JOptionPane.showInputDialog("Enter username@hostname",
System.getProperty("user.name")+
"@localhost");
}
String user=host.substring(0, host.indexOf('@'));
host=host.substring(host.indexOf('@')+1);
Session session=jsch.getSession(user, host, 22);
String display=JOptionPane.showInputDialog("Please enter display name",
xhost+":"+xport);
xhost=display.substring(0, display.indexOf(':'));
xport=Integer.parseInt(display.substring(display.indexOf(':')+1));
session.setX11Host(xhost);
session.setX11Port(xport+6000);
// username and password will be given via UserInfo interface.
UserInfo ui=new MyUserInfo();
session.setUserInfo(ui);
session.connect();
Channel channel=session.openChannel("shell");
channel.setXForwarding(true);
channel.setInputStream(System.in);
channel.setOutputStream(System.out);
channel.connect();
}
catch(Exception e){
System.out.println(e);
}
}
public static class MyUserInfo implements UserInfo, UIKeyboardInteractive{
public String getPassword(){ return passwd; }
public boolean promptYesNo(String str){
Object[] options={ "yes", "no" };
int foo=JOptionPane.showOptionDialog(null,
str,
"Warning",
JOptionPane.DEFAULT_OPTION,
JOptionPane.WARNING_MESSAGE,
null, options, options[0]);
return foo==0;
}
String passwd;
JTextField passwordField=(JTextField)new JPasswordField(20);
public String getPassphrase(){ return null; }
public boolean promptPassphrase(String message){ return true; }
public boolean promptPassword(String message){
Object[] ob={passwordField};
int result=
JOptionPane.showConfirmDialog(null, ob, message,
JOptionPane.OK_CANCEL_OPTION);
if(result==JOptionPane.OK_OPTION){
passwd=passwordField.getText();
return true;
}
else{ return false; }
}
public void showMessage(String message){
JOptionPane.showMessageDialog(null, message);
}
final GridBagConstraints gbc =
new GridBagConstraints(0,0,1,1,1,1,
GridBagConstraints.NORTHWEST,
GridBagConstraints.NONE,
new Insets(0,0,0,0),0,0);
private Container panel;
public String[] promptKeyboardInteractive(String destination,
String name,
String instruction,
String[] prompt,
boolean[] echo){
panel = new JPanel();
panel.setLayout(new GridBagLayout());
gbc.weightx = 1.0;
gbc.gridwidth = GridBagConstraints.REMAINDER;
gbc.gridx = 0;
panel.add(new JLabel(instruction), gbc);
gbc.gridy++;
gbc.gridwidth = GridBagConstraints.RELATIVE;
JTextField[] texts=new JTextField[prompt.length];
for(int i=0; i<prompt.length; i++){
gbc.fill = GridBagConstraints.NONE;
gbc.gridx = 0;
gbc.weightx = 1;
panel.add(new JLabel(prompt[i]),gbc);
gbc.gridx = 1;
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.weighty = 1;
if(echo[i]){
texts[i]=new JTextField(20);
}
else{
texts[i]=new JPasswordField(20);
}
panel.add(texts[i], gbc);
gbc.gridy++;
}
if(JOptionPane.showConfirmDialog(null, panel,
destination+": "+name,
JOptionPane.OK_CANCEL_OPTION,
JOptionPane.QUESTION_MESSAGE)
==JOptionPane.OK_OPTION){
String[] response=new String[prompt.length];
for(int i=0; i<prompt.length; i++){
response[i]=texts[i].getText();
}
return response;
}
else{
return null; // cancel
}
}
}
}
同样,我可以通过我的GUI应用程序成功连接到远程工作站并运行文本程序,例如uptime
,但远程工作站上没有GUI应用程序。
我可以从终端窗口ssh -X
进入远程工作站,一切正常。
如果我在用户工作站上运行env
,我会看到DISPLAY=:0.0
如果我在使用env
时在远程工作站上运行ssh -X
,我会看到DISPLAY=localhost:11.0
当我在本地工作站上打开Java GUI应用程序时,它运行System.out.println(System.getenv("DISPLAY"));
并返回:0
当我通过Java GUI应用程序连接到远程系统并发送env
时,我看到DISPLAY=localhost:11.0
我目前正在使用该软件将user
设置为当前user.name
env变量和host
到特定工作站。 xhost
设置为127.0.0.1,xport
设置为0(通过代码转换为6000)。我已经尝试更改&#34; localhost&#34;的地址。没有成功。我也尝试将xport
硬编码为0,6000,6001和6011但没有成功。
我正在使用Eclipse IDE但是已经尝试从IDE运行它并导出.jar并以这种方式运行它而没有运气。