PHP ssh2_exec流挂

时间:2013-01-28 21:25:51

标签: php ssh libssh2

我一直试图让ssh2_exec运行并从远程主机返回响应,但无法找到正确的方法来执行此操作。我根据其他人推荐的内容将这个功能放在一起,但是一旦到达stream_get_contents($errorStream);,该功能总是挂起。

我正在运行的命令是ls -l所以它应该很快执行。

public function exec($command) 
{
    $stream = ssh2_exec($this->ssh, $command);

    if (! $stream) {
        throw new exception('Could not open shell exec stream');
    }
    $errorStream = ssh2_fetch_stream($stream, SSH2_STREAM_STDERR);

    stream_set_blocking($errorStream, true);
    stream_set_blocking($stream, true);

    $err      = stream_get_contents($errorStream);
    $response = stream_get_contents($stream);

    @fclose($errorStream);
    @fclose($stream);

    if ($err) {
        throw new exception($err);
    }

    return $response;
}

2 个答案:

答案 0 :(得分:1)

我发现如果命令输出的大小达到64KB(我的Linux开发盒上的那个数字),函数ssh2_exec()将挂起。

要避免的一种方法是使用:stream_set_timeout()

$stream = ssh2_exec($this->ssh, $command);

if (! $stream) {
    throw new exception('Could not open shell exec stream');
}

stream_set_timeout($stream, 10);

答案 1 :(得分:0)

老实说,我会使用phpseclib, a pure PHP SSH implementation。例如

<?php
include('Net/SSH2.php');

$ssh = new Net_SSH2('www.domain.tld');
if (!$ssh->login('username', 'password')) {
    exit('Login Failed');
}

echo $ssh->exec('ls -l');