Aws :: S3 :: Errors :: RequestTimeTooSkewed(请求时间和当前时间之间的差异太大。):

时间:2016-07-10 18:16:43

标签: ruby-on-rails amazon-web-services amazon-s3

config.paperclip_defaults = {
storage: :s3,
:s3_region => 'ap-southeast-1',
s3_credentials: {
  bucket: 'sjoobing',
  access_key_id: '',
  secret_access_key: '',
}
}

当我上传文件然后发生此错误

2 个答案:

答案 0 :(得分:2)

以下适用于我:

       date      date2      date3
0  20170101 2017-01-01 2017-01-01
1  20170102 2017-01-02 2017-01-02
2  20170103 2017-01-03 2017-01-03
3  20170104 2017-01-04 2017-01-04

答案 1 :(得分:1)

服务器上的时间与当前时间不同步。同步系统时钟,问题就会消失。

请查看本指南以了解时间同步

http://www.howtogeek.com/tips/how-to-sync-your-linux-server-time-with-network-time-servers-ntp/