1

鉴于 Web 应用程序没有 su 权限,我想执行一个需要 sudo 的 shell 脚本。我还想避免让用户输入密码。我有哪些选择?这基本上就是我想要做的。

检票申请(更改IP表格)

@Override
protected void onSubmit() {
    System.out.println("Submitted");            
    try {
        Shell.updateIp("eth0", "192.168.217.129");
    } catch (IOException e) {
        e.printStackTrace();
    }
}

壳牌.java

public static void updateIp(String ethernetInterface, String ip) throws IOException {
    ProcessBuilder builder = new ProcessBuilder("/home/keeboi/Desktop/iptool.sh", ethernetInterface, ip);
    Process child = builder.start();
    Network.readOutput(child);
    child.destroy();
}

iptool.sh 执行一个可运行的 jar。

iptool.sh

#!/bin/sh
sudo java -jar changeip.jar $1 $2

我得到:

sudo: no tty present and no askpass program specified
Sorry, try again.
sudo: no tty present and no askpass program specified
Sorry, try again.
sudo: no tty present and no askpass program specified
Sorry, try again.
sudo: 3 incorrect password attempts

再次强调,网络应用程序没有被赋予任何 su 权限,并且我想避免向用户询问密码。

编辑:

我已经尝试添加keeboi ALL = NOPASSWD: /home/keeboi/Desktop/iptool.sh到我的/etc/sudoers,但它仍然需要密码。

更新

也加keeboi ALL = NOPASSWD: /home/keeboi/Desktop/changeip.jar了,没有骰子。

4

1 回答 1

4

只需添加NOPASSWD/etc/sudoers:

user     ALL = NOPASSWD: /home/keeboi/Desktop/iptool.sh

这会关闭密码检查。

于 2012-07-05T01:42:53.727 回答