标签: java jsp tomcat centos
我正在尝试在tomcat webserver下创建一个jsp页面来重启CentOS7服务器。它能够写入文本文件但无法调用restart / shutdown命令。这是由于许可问题吗?
<% Runtime runtime = Runtime.getRuntime(); Process proc = runtime.exec("reboot"); out.println("restart"); %>
任何帮助将不胜感激。谢谢
答案 0 :(得分:0)
我只是更改了tomcat的权限。
https://www.shellhacks.com/how-to-grant-root-access-user-root-privileges-linux/