gpt4 book ai didi

php - 创建一个 PHP 网页,使您能够在 Linux 中重新启动服务器?

转载 作者:搜寻专家 更新时间:2023-10-31 20:55:42 25 4
gpt4 key购买 nike

我想创建一个网页,允许用户在 Linux 服务器上启动重启。显然,这仅适用于系统管理员,也可以通过使用 iptables 进行控制。

下面是我正在考虑使用的代码示例,但我想知道是否有另一种方法可以做到这一点,以及如何在网页中使用它?还有什么我应该考虑的事情吗?

$command = "cat $pass | su -c 'shutdown -r now'";
$output = array();
try{
echo shell_exec($command);
exec($command, $output);
system($command, $output);
}
catch(Exception $e) {
print "Unable to shutdown system...\n";
}

foreach ($output as $line) {
print "$line<br>";
}

提前致谢。

最佳答案

关于php - 创建一个 PHP 网页,使您能够在 Linux 中重新启动服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2794505/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com