I have an issue on capturing the ssh script output onto the browser as it executes rather than having it in the end. script written-

$descriptorspec = array(
        0 => array("pipe","r"),
        1 => array("pipe","w"),
        2 => array("file","./error.log","a")
) ;
$cwd = 'path/path1' ;
for($counter=1;$counter<= 10;$counter++)
{
        $cmd="sudo test.sh arg1 arg2 arg3";
        $process = proc_open('ssh  user@server', $descriptorspec, $pipes, $cwd) ;
        if (is_resource($process))
        {
          fwrite($pipes[0], $cmd) ;
         fclose($pipes[0]) ;
                echo stream_get_contents($pipes[1]) ;
                  fclose($pipes[1]) ;
                $return_value = proc_close($process);
            echo "$counter=command returned $return_value<br>";
        }
}

Shell script takes 10mins to execute. if the $counter=10 then it taking to much time to get the real output thrown on screen. i require that it keeping on showing the stream output as it executes so that we know whats happening. Is there case of buffering or? please help me to find the solution.

link|improve this question
feedback

2 Answers

Try the flush() function.

link|improve this answer
Thanks . You mean to say- echo stream_get_contents($pipes[1]) ; flush(); – rahul Feb 8 '11 at 12:20
Thanks . You mean to say- echo stream_get_contents($pipes[1]) ; flush(); I tried this- if (ob_get_level() == 0) ob_start(); echo stream_get_contents($pipes[1]) ; ob_flush(); flush(); usleep(50000); it worked fine if script1 takes smaller times, but for script2 which takes time to execute then it goes in same time consuming issue. – rahul Feb 8 '11 at 12:44
feedback

I'd say there's a few things you should check for:

  1. Create a single stream, for each output you need to push to the screen. I can't see why you're using the $counter for-loop. check the man pages for fgets and feof and create a while loop
  2. Check to see if both servers have been provided with the correct keys && list each other as trusted client/hosts. If for some reason you can't do this, you could use a -less secure- rsh connection.
  3. Instead of running the script as super-user, chmod or chown it.

If the keys don't match, ssh will prompt for a password that your script can't provide, that's why you should double check for any issues there. Even if that checks out: sudo will prompt for a password, too: the script itself might as well be done in les than 10 milliseconds, I believe the 10 minutes exec time is the result of a timeout. chmodding or chown-ing is a way around su.

I suggest you try something like this:

$descriptorspec = array(array("pipe","r"),array("pipe","w")) ;
$cwd = 'path/path1' ;
$process= proc_open('ssh [key] user@server',$descriptorspec, $pipes, $cwd);
$cmds = array('chown user test.sh','chmod 777 test.sh', './test.sh arg1 arg2 arg3', 'chmod 655 test.sh','chown original_user test.sh');
while ($cmd = array_shift($cmds))
{
    fwrite($pipes[0],$cmd . "\n");
}
fclose($pipes[0];
echo stream_get_contents($pipes[1]);
//Or with fgets and while:
while (!feof($pipes[1]))
{
    echo fgets($pipes[1]);
}
//roundup: 
fclose($pipes[1]);
$return_value = proc_close($process);

Please note: I have omitted all checks (like is_resource), there is no stderr in de descriptor array and most of all: this snippet hasn't been tested, since the machine I'm on doesn't have php installed, it's not mine :).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.