我正在尝试运行使用cat $test_dir/test.dat
等本地Linux逻辑路径的命令,但逻辑路径$test_dir
(用户环境变量)不能通过ChannelExec
获得。但是当我使用交互式ChannelShell
时,我能够看到用户变量和命令在交互式会话中运行良好。我只能从“exec”会话中查看系统级环境变量。甚至可以使用JSch库,如果是,那么我该如何实现它,如果不是我应该使用哪个库来实现它?
在下面添加我的课程代码: `public class SecureShell {
private static final Logger logger = LogManager.getLogger(SecureShell.class);
private String uName;
private String pWord;
private String hName;
private int port;
private Session session = null;
private Channel channel = null;
/**Create an instance to start and stop the remote shell and execute commands remotely via java.
*
* @param uName
* host username
* @param pWord
* host password
* @param hName
* host name
* @param port
* host port number
*/
public SecureShell(String uName, String pWord, String hName, int port) {
this.uName = uName;
this.pWord = pWord;
this.hName = hName;
this.port = port;
}
/**Create an instance to start and stop the remote shell and execute commands remotely via java.
*
*@param uName
* host username
* @param pWord
* host password
* @param hName
* host name
*/
public SecureShell(String uName, String pWord, String hName) {
this.uName = uName;
this.pWord = pWord;
this.hName = hName;
this.port = 22;
}
/**Start the session with the host.
* @return
* true if the session started successfully, false otherwise
*/
public boolean startSession() {
JSch jsch = new JSch();
try {
session = jsch.getSession(uName, hName, port);
java.util.Properties config = new java.util.Properties();
config.put("StrictHostKeyChecking", "no");
session.setConfig(config);
session.setPassword(pWord);
session.connect();
} catch (JSchException jsche) {
logger.error(jsche.getMessage());
return false;
}
return true;
}
/** Execute commands on the host;
* @param command
* command to be executed on the host.
* @return
* status of the execution
*/
public int execute(String command) {
int status = -1;
if(session != null && session.isConnected()) {
try {
channel = session.openChannel("exec");
//((ChannelExec)channel).setEnv("LC_XXX", "xxxxxxx");
((ChannelExec)channel).setPty(true);
((ChannelExec) channel).setCommand(command);
InputStream in = channel.getInputStream();
channel.connect();
byte[] buffer = new byte[1024];
while(true){
while(in.available()>0){
int i=in.read(buffer, 0, 1024);
System.out.print(new String(buffer, 0, i));
if(i<0)
break;
}
if(channel.isClosed()){
if(in.available()>0)
continue;
status = channel.getExitStatus();
break;
}
}
} catch (JSchException jsche) {
logger.error(jsche.getMessage());
} catch (IOException ioe) {
logger.error(ioe.getMessage());
} finally {
if(channel!=null && channel.isConnected())
channel.disconnect();
}
}
return status;
}
/**Stop the session with the remote.
*
*/
public void stopSession() {
if(session!=null && session.isConnected())
session.disconnect();
}
public static void main(String[] args) {
SecureShell ssh = new SecureShell("user", "password", "hostname");
ssh.startSession();
System.out.println(ssh.execute("env"));
ssh.stopSession();
}
}`
答案 0 :(得分:2)
&#34; exec&#34; JSch中的通道(正确地)默认情况下不为会话分配伪终端(PTY)。因此,可能(可能)采购了一组不同的启动脚本。和/或脚本中的不同分支基于TERM
环境变量的缺失/存在而被采用。所以环境可能与交互式JSch&#34; shell&#34;会话或使用SSH客户端时。
解决这个问题的方法:
修复启动脚本,以便为交互式和非交互式会话设置相同的环境变量。
另一种(不推荐的)方法是强制执行&#34; exec&#34;频道使用.setPty
方法:
Channel channel=session.openChannel("exec");
((ChannelExec)channel).setPty(true);
使用伪终端自动执行命令可能会带来令人讨厌的副作用。参见例如
有关类似问题,请参阅
答案 1 :(得分:2)
由于您未打开交互式shell,因此无法设置环境变量。但是,你可以使用bash命令和--login(man bash获取更多细节)来获得你想要的结果
bash --login -c 'command arg1 ...'"
答案 2 :(得分:0)
我能够通过在.bashrc文件中设置环境变量来解决此问题。通过setEnv方法设置环境变量对我没有帮助。