tags:

views:

52

answers:

1

I want to create a web page that allows the user to initiate a reboot on the linux server. Obviously this would only be avaliable for system admins and would also be controlled by using iptables.

Below is a sample of code that I was thinking of using but I wanted to know if there is another way to do this and how also to use this in a web page? Also is there any thing else that I should consider?

$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>";
}

Thanks in advance.

+1  A: 

Have checked this one http://www.linuxquestions.org/questions/linux-newbie-8/shutdown-and-reboot-linux-system-via-php-script-713379/ ?

Riddick
So basically have a script that is in a folder within the website and then execute that script from the php web page. Do I need to add anything to the above to allow me to do this with respect to specifying that this is a script and not a web page? Also is there anything I need to add from a permissions perspective? Thanks
aHunter
Sorry just answered my own question and rebooted my linux pc. :) thanks
aHunter