如何修复未在Intellij中设置的TERM环境?

时间:2019-01-07 16:32:18

标签: java intellij-idea

我目前正在开发一个包含Jsch的Java自动化应用程序。但是,当我运行代码时,它传回一个错误,指出未设置TERM环境。

我已经尝试通过选择环境变量在intellij中手动添加环境。然后我添加TERM = xterm。尽管当我运行它时,它仍然失败。

import com.jcraft.jsch.*;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;


public class Driver {

public static void main(String[] args) throws Exception {

    JSch jsch = new JSch();

    Session session;
    try {

        // Open a Session to remote SSH server and Connect.
        // Set User and IP of the remote host and SSH port.
        session = jsch.getSession("username", "host", 22);
        // When we do SSH to a remote host for the 1st time or if key at the remote host
        // changes, we will be prompted to confirm the authenticity of remote host.
        // This check feature is controlled by StrictHostKeyChecking ssh parameter.
        // By default StrictHostKeyChecking  is set to yes as a security measure.
        session.setConfig("StrictHostKeyChecking", "no");
        //Set password
        session.setPassword("password");
        session.connect();

        // create the execution channel over the session
        ChannelExec channelExec = (ChannelExec) session.openChannel("exec");
        // Set the command to execute on the channel and execute the command
        channelExec.setCommand("./script.sh");
        channelExec.connect();

        // Get an InputStream from this channel and read messages, generated
        // by the executing command, from the remote side.
        InputStream in = channelExec.getInputStream();
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String line;
        while ((line = reader.readLine()) != null) {
            System.out.println(line);
        }

        // Command execution completed here.

        // Retrieve the exit status of the executed command
        int exitStatus = channelExec.getExitStatus();
        if (exitStatus > 0) {
            System.out.println("Remote script exec error! " + exitStatus);
        }
        //Disconnect the Session
        session.disconnect();
    } catch (JSchException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

}

2 个答案:

答案 0 :(得分:1)

通过导出变量或使用设置了TERM的设置变量运行代码,确保在当前shell中设置了变量。

类似以下的方法应该起作用:

TERM=linux /path/to/your/executable --some-arguments

以下内容可能仅与bash相关,但还有一种导出变量以使其全局的方法。

导出变量后,可以使用以下命令验证其值:

echo $TERM

空响应表示未设置变量。否则,嗯...我相信。为了在bash中将其全局导出,您可以直接使用命令行或将export命令添加到您的dotfile中,该文件应在登录时加载

export TERM=linux

无论选择哪种方式,命令都保持不变。有多种终端和类型,“ linux”是非常通用的终端和类型。一种更友好的颜色解决方案是尝试使用“ xterm-256color”代替。

export TERM=xterm-256color

如果您想了解更多信息,请查看终端的基础知识。我希望这可以帮助您实现理想的结果。

欢呼

答案 1 :(得分:0)

IntelliJ IDEA运行控制台不是真正的终端,因此出现了问题。

您可以在IntelliJ IDEA外部或“终端”工具窗口中手动运行代码。

要进行调试,您可以使用远程调试。

相关请求:Add option to run configuration to launch in real console