S3cmd配置无法正常工作错误:S3错误:无

时间:2015-04-30 09:51:59

标签: linux amazon-s3 s3cmd

我正在尝试使用以下配置在centos中安装s3cmd。但是当我尝试列出所有桶时,它会给出错误s3cmd ls

错误:S3错误:无

我检查过python版本是2.6.6和s3cmd版本1.5.1.2

http://s3tools.org/kb/item14.htm http://s3tools.org/kb/item1.htm

$(function () {
'use strict';
$.ajax({
    url: 'https://api.flickr.com/services/rest/',
    data: {
        format: 'json',
        method: 'flickr.photosets.getPhotos',
        photoset_id: '<ALBUM ID>',
        api_key: '<API KEY>'
    },
    dataType: 'jsonp',
    jsonp: 'jsoncallback'
}).done(function (result) {
    var linksContainer = $('#links'),
        baseUrl;
    $.each(result.photoset.photo, function (index, photo) {
        baseUrl = 'https://farm' + photo.farm + '.static.flickr.com/' +
            photo.server + '/' + photo.id + '_' + photo.secret;
        $('<a/>')
            .append($('<img>').prop('src', baseUrl + '_q.jpg'))
            .prop('href', baseUrl + '_b.jpg')
            .prop('title', photo.title)
            .attr('data-gallery', '')
            .appendTo(linksContainer);
    });
});

1 个答案:

答案 0 :(得分:0)

经过几次搜索后我找到了解决方案,这是由于RequestTimeTooSkewed。

通过这个命令我能够调试这个s3cmd --configuration --debug

Error><Code>RequestTimeTooSkewed</Code></Error>

您可以使用这些命令修复RequestTimeTooSkewed

apt-get install ntp

yum install ntp

配置NTP以使用亚马逊服务器,如下所示: vim /etc/ntp.conf

service ntpd restart

有关详情,请点击此链接http://www.emind.co/how-to/how-to-fix-amazon-s3-requesttimetooskewed