Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7694127
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T21:14:53+00:00 2026-05-31T21:14:53+00:00

My rails app crashes as soon as I access a web page. My versions

  • 0

My rails app crashes as soon as I access a web page.
My versions of ruby and rails are:

$ rails –version
Rails 3.2.1

$ ruby –version
ruby 1.9.2p290 (2011-07-09 revision 32553) [i386-cygwin]

Here is the log:

[2012-02-28 09:46:26] INFO WEBrick::HTTPServer#start: pid=12536 port=3000

Started GET "/assets/rails.png" for 127.0.0.1 at 2012-02-28 09:46:49 +0800
Served asset /rails.png - 200 OK (29ms)
/home/salil.wadnerkar/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpres
ponse.rb:323: [BUG] rb_sys_fail() - errno == 0
ruby 1.9.2p290 (2011-07-09 revision 32553) [i386-cygwin]

-- control frame ----------
c:0010 p:---- s:0047 b:0047 l:000046 d:000046 CFUNC :write
c:0009 p:---- s:0045 b:0045 l:000044 d:000044 CFUNC :<<
c:0008 p:0010 s:0041 b:0041 l:000040 d:000040 METHOD /home/salil.wadnerkar/.rvm/
rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpresponse.rb:323
c:0007 p:0260 s:0036 b:0036 l:000035 d:000035 METHOD /home/salil.wadnerkar/.rvm/
rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpresponse.rb:295
c:0006 p:0036 s:0029 b:0029 l:000028 d:000028 METHOD /home/salil.wadnerkar/.rvm/
rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpresponse.rb:186
c:0005 p:0037 s:0025 b:0025 l:000024 d:000024 METHOD /home/salil.wadnerkar/.rvm/
rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpresponse.rb:103
c:0004 p:0452 s:0020 b:0020 l:000019 d:000019 METHOD /home/salil.wadnerkar/.rvm/
rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:86
c:0003 p:0126 s:0009 b:0009 l:001414 d:000008 BLOCK /home/salil.wadnerkar/.rvm/
rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183
c:0002 p:---- s:0004 b:0004 l:000003 d:000003 FINISH

c:0001 p:---- s:0002 b:0002 l:000001 d:000001 TOP

-- Ruby level backtrace information ----------------------------------------
/home/salil.wadnerkar/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.
rb:183:in block in start_thread'
/home/salil.wadnerkar/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpser
ver.rb:86:in
run'
/home/salil.wadnerkar/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpres
ponse.rb:103:in send_response'
/home/salil.wadnerkar/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpres
ponse.rb:186:in
send_body'
/home/salil.wadnerkar/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpres
ponse.rb:295:in send_body_string'
/home/salil.wadnerkar/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpres
ponse.rb:323:in
_write_data'
/home/salil.wadnerkar/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpres
ponse.rb:323:in <<'
/home/salil.wadnerkar/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpres
ponse.rb:323:in
write'

[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: http://www.ruby-lang.org/bugreport.html

Aborted (core dumped)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T21:14:54+00:00Added an answer on May 31, 2026 at 9:14 pm

    Found the solution in this thread by Oscar Holmstrand:
    Workaround:

    Add (or change)

    config.log_level = :warn

    in config/environments/development.rb

    Once I set it up, then I realized that it was a problem with a gem.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using following versions of Ruby and Rails on arch linux [hardik@sunshine: kandibank
I deployed an rails(2.3.2) app on Passenger 2.2.2. It crashes sometimes. There's the error
It fails with the following log errors : 2011-11-28T22:23:21+00:00 app[web.1]: /app/config/application.rb:84:in `<class:Application>': undefined method
I use Ruby 1.9.x syntax in my Rails 3 app, but after pushing it
My Rails app is using version 3.2.3 and I want to deploy to Heroku
My rails app is set up using a mysql database. When I do a
Moving rails app to production and running into the routing issues. I've read this
My rails app allows users to edit a certain json file through the browser.
Simple rails app: I have 2 models, user and intro [which is simply a
My Rails app has some pages which are SSL-required and others which are SSL-optional.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.