可能重复:
Execute a linux shell command with “sudo” using java, without entering the required password
我想通过java程序在linux上执行sudo命令,但是它要求输入密码。 但我想在没有密码的情况下运行编程,请告诉我。 我的编程是
public class JavaCommandProg {
public static void main(String args[]) throws IOException, InterruptedException {
String command="sudo cat /etc/sudoers";
Process myProcess =null;
try {
Runtime runtime=Runtime.getRuntime();
File file=new File("/home/users/admin/temp");
myProcess = runtime.exec(command,null,file);
myProcess.waitFor();
InputStreamReader myIStreamReader = new InputStreamReader(myProcess.getInputStream());
BufferedReader br=new BufferedReader(myIStreamReader);
String line;
while((line=br.readLine())!=null){
System.out.println(line);
}
} catch (IOException anIOException) {
System.out.println(anIOException);
}
}
}
Compling like: javac JavaCommandProg.java
and : java JavaCommandProg
答案 0 :(得分:1)
使用sudo授予您的用户权限。看看这里:http://www.ducea.com/2006/06/18/linux-tips-password-usage-in-sudo-passwd-nopasswd/
例如:
/etc/sudoers
admin ALL = NOPASSWD: ALL
答案 1 :(得分:0)
如果你能让它运行就意味着安全漏洞。
这样说......
使用sudo调用您的java程序
$ sudo java JavaCommandProg
这将提示您在运行jvm时引入sudo密码,然后您可以从Java程序内部调用sudo。