Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing a rails application which is currently deployed on linode server and suddenly I am getting following error when i configured it with apache passenger but it works fine when run with thin on linode Can anyone help me? what is happening?

    AWS::Errors::MissingCredentialsError in AttachmentsController#update

    Missing Credentials.

    Unable to find AWS credentials.  You can configure your AWS credentials
    a few different ways:

    * Call AWS.config with :access_key_id and :secret_access_key

    * Export AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY to ENV

    * On EC2 you can run instances with an IAM instance profile and credentials 
       will be auto loaded from the instance metadata service on those
       instances.

    * Call AWS.config with :credential_provider.  A credential provider should
      either include AWS::Core::CredentialProviders::Provider or respond to
      the same public methods.

    = Ruby on Rails

    In a Ruby on Rails application you may also specify your credentials in 
    the following ways:

    * Via a config initializer script using any of the methods mentioned above
      (e.g.RAILS_ROOT/config/initializers/aws-sdk.rb).

    * Via a yaml configuration file located at RAILS_ROOT/config/aws.yml.
      This file should be formated like the default RAILS_ROOT/config/database.yml
      file.

    Rails.root: /home/deploy/kadince
    Application Trace | Framework Trace | Full Trace

    app/models/approval.rb:28:in `update_project_approvals'
    app/controllers/attachments_controller.rb:134:in `block in update'
    app/controllers/attachments_controller.rb:133:in `update'

    Request 

    Parameters:

    {"utf8"=>"✓",
     "_method"=>"put",
     "authenticity_token"=>"7pg+7HL2l+xBCg5mQSFtFI0vXodLCYzIIEHv0ADKwjE=",
     "attachment"=>{"approvals_attributes"=>{"8"=>{"approval_level_id"=>"2",
     "user_id"=>"2",
     "status"=>"approved"}}},
     "submit"=>"APPROVE",
     "id"=>"8"}
share|improve this question
I received same error when initializing S3 i.e. AWS::S3.new without any credentials. May be your init call isn't going through. – amitamb Jan 19 at 19:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.