3

尝试使用 php 列出远程 sftp 位置中存在的文件时,出现此错误:

错误 324 (net::ERR_EMPTY_RESPONSE):

服务器关闭连接而不发送任何数据。在我的另一台灯服务器上,相同的代码可以正常工作。如果您能提供帮助,请指出我遗漏的地方。提前致谢。

function listBuildFiles() {

global $sftp_host, $sftp_username, $sftp_password, $sftp_path;
$connection = ssh2_connect($sftp_host);
// Authenticate
if (!ssh2_auth_password($connection, $sftp_username, $sftp_password)) {
    throw new Exception('Unable to connect.');
}

// Create our SFTP resource
if (!$sftp = ssh2_sftp($connection)) {
    throw new Exception('Unable to create SFTP connection.');
}

/**
 * Now that we have our SFTP resource, we can open a directory resource
 * to get us a list of files. Here we will use the $sftp resource in
 * our address string as I previously mentioned since our ssh2://
 * protocol allows it.
 */
$files = array();
$dirHandle = opendir("ssh2.sftp://$sftp$sftp_path");
    $i=0;
// Properly scan through the directory for files, ignoring directory indexes (. & ..)
while (false !== ($file = readdir($dirHandle))) {
    if ($file != '.' && $file != '..') {
        $files[$i] = $file;
        $i++;
    }
}

echo '<select name="buildName">';
echo '<option>Please Select a build</option>';
foreach ($files as $filename) {
      echo "<option value=\"$filename\">$filename</option>";
    }
echo '</select>';
ssh2_exec($connection, "exit");

谢谢, 乌杰瓦尔

4

2 回答 2

1

只是为了确保服务器端没有问题,您可以打开控制台并以详细模式尝试原始 ssh 连接:

ssh -v youruser@yourhost.com

这会跟踪服务器和客户端之间的所有交互,可能会从服务器端为您提供一些线索。

于 2012-07-09T12:33:54.207 回答
0

使用phpseclib,一个纯 PHP SFTP 实现,您可以看到正在发生的事情的完整日志。例子:

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

define('NET_SSH2_LOGGING', NET_SSH2_LOG_COMPLEX);

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

// puts a three-byte file named filename.remote on the SFTP server
$sftp->put('filename.remote', 'xxx');

echo $ssh->getLog();
print_r($ssh->getErrors());
?>

phpseclib 的开发人员也非常主动地提供支持,所以如果您无法从日志或错误消息中找出它,他可能可以。

于 2012-07-10T21:44:47.757 回答