0

我一直在尝试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;
}
4

2 回答 2

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);
于 2014-06-26T06:58:36.177 回答
0

老实说,我会使用phpseclib,一个纯 PHP SSH 实现。例如。

<?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');
于 2013-01-31T18:38:05.820 回答