Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Console not loading server

I have Ruby on Rails installed and I can run the server fine using rails server, but when I use rails console to start the console it doesn't load properly.

I guess it may an issue with WEBrick but that loads in the server?!

Here is a screenshot showing that the server works as expected: Working rails server

And here is one of the failed console: Failed rails console

I'm running "Windows 7 Ultimate 64bit" with Ruby 2.0.0p598 and Rails 4.2.2.

like image 905
Blease Avatar asked Mar 15 '26 11:03

Blease


1 Answers

rails console isn't supposed to run the server. It's the console, and you just mess with it, typing stuff inside and getting replies from it via on-screen text messages.

Everything's working fine, you may continue venturing into the mysterious and rewarding world of Ruby on Rails development.

like image 144
EugZol Avatar answered Mar 17 '26 23:03

EugZol