【发布时间】:2016-09-26 07:42:40
【问题描述】:
我想运行以下命令: ssh sudouser@host1 sudo mkdir aaa
sudoUser 无需输入密码即可运行 sudo 命令。我参考了以下链接:here、here 和 here。我制作了我的脚本。但是在我运行下面的代码之后,它总是挂在那里。
那么如何处理sudo没有密码的场景呢?
import com.jcraft.jsch.*;
import java.io.*;
public class sudo{
public static void main(String[] arg){
try{
JSch jsch=new JSch();
String host="hostip";
Session session=jsch.getSession("user", host, 22);
session.setPassword("pass");
java.util.Properties config = new java.util.Properties();
config.put("StrictHostKeyChecking", "no");
session.setConfig(config);
session.connect();
String command="mkdir try";
String sudo_pass=null;
sudo_pass="";
Channel channel=session.openChannel("exec");
// man sudo
// -S The -S (stdin) option causes sudo to read the password from the
// standard input instead of the terminal device.
// -p The -p (prompt) option allows you to override the default
// password prompt and use a custom one.
((ChannelExec)channel).setCommand("sudo -S -p '' "+command);
((ChannelExec) channel).setPty(true);
InputStream in=channel.getInputStream();
OutputStream out=channel.getOutputStream();
((ChannelExec)channel).setErrStream(System.err);
channel.connect();
out.write((sudo_pass+"\n").getBytes());
out.flush();
byte[] tmp=new byte[1024];
while(true){
while(in.available()>0){
int i=in.read(tmp, 0, 1024);
if(i<0)break;
System.out.print(new String(tmp, 0, i));
}
if(channel.isClosed()){
System.out.println("exit-status: "+channel.getExitStatus());
break;
}
try{Thread.sleep(1000);}catch(Exception ee){}
}
channel.disconnect();
session.disconnect();
}
catch(Exception e){
System.out.println(e);
}
}
}
【问题讨论】:
-
您的远程 sudoers 文件是否设置了
requiretty?它可能需要关闭 -
requiretty 已被评论。在文件 /etc/sudoers:#Defaults 要求
-
尝试为该命令或用户删除它...或使用
!requiretty -
我更改为默认值!requiretty。它仍然挂在那里。
-
我发现不加
((ChannelExec) channel).setPty(true);就不会挂在那里。相反,它会很快返回xit-status: 1。