So I'm trying to get a process to be run as a super user from within a php code, Usin ssh2 function:
$commande='sudo systemctl restart kannel.service';
$con=ssh2_connect($host,$port);
$con2=ssh2_auth_password($con,$user,$password);
if(ssh2_exec($con,$commande)) session()->flash('success','Success!!');
else session()->flash('success','ERROR');
So my question is basically, if I want to run systemctl restart kannel.service as super user that prompts the user for the super user password when required, how should I go about doing this? I have no intention of storing passwords in the script.
$commande='sudo systemctl restart kannel.service';
$con=ssh2_connect($host,$port);
$con2=ssh2_auth_password($con,$user,$password);
if(ssh2_exec($con,$commande)) session()->flash('success','Success!!');
else session()->flash('success','ERROR');
I attempted this, but it did not work.
you can set the streams to blocking mode to ensure the PHP script waits for the command to complete this way you can capture any output/error properly.