Re: [Rails] Rails Server not running on Cloud 9

2019-05-02 Thread Frederick Cheung
That error sounds a lot the one you get with earlier versions of rails 4.2.x that weren’t compatible with ruby 2.4. I’d try the most current version of rails 4.2.x (4.2.11.1). There shouldn’t be any feature differences between that and the version you already had, so if the tutorial you are

Re: [Rails] Rails Server not running on Cloud 9

2019-05-02 Thread nickcon12
Brandon, I reviewed the stack overflow that you linked to and it is not even for the same error. I am getting the error that the OP mentioned and have not yet found the solution. Nick On Monday, October 1, 2018 at 12:00:43 PM UTC-4, Brandon McClelland wrote: > > Have you read this? >

Re: [Rails] Rails Server not running on Cloud 9

2018-10-01 Thread Brandon McClelland
Have you read this? https://stackoverflow.com/questions/26663967/rails-tutorial-chapter-1-rails-server-isnt-working-on-cloud9?rq=1 On Mon, Oct 1, 2018 at 10:48 AM Sal Sarkar wrote: > Hi, > I'm going through Micheal Hart'ls Ruby on Rails 3rd Edition, on Cloud9 the > Rails Server refuses to

[Rails] Rails Server not running on Cloud 9

2018-10-01 Thread Sal Sarkar
Hi, I'm going through Micheal Hart'ls Ruby on Rails 3rd Edition, on Cloud9 the Rails Server refuses to Start. Ive tried many solutions offered by different websites but nothing worked. Please help - stuck in Chapter1 for the longest time After putting the command* "rails server -b $IP -p

Re: [Rails] rails server doesn't start

2016-07-01 Thread Colin Law
On 1 July 2016 at 20:31, Baron Visi wrote: > /home/impulsief/.gem/ruby/gems/activesupport-5.0.0/lib/active_support/core_ext/object/json.rb:2:in > `require': cannot load such file -- json (LoadError) Have you run bundle install ? If so then post Gemfile and Gemfile.lock

[Rails] rails server doesn't start

2016-07-01 Thread Baron Visi
/home/impulsief/.gem/ruby/gems/activesupport-5.0.0/lib/active_support/core_ext/object/json.rb:2:in `require': cannot load such file -- json (LoadError) from /home/impulsief/.gem/ruby/gems/activesupport-5.0.0/lib/active_support/core_ext/object/json.rb:2:in `' from

Re: [Rails] rails server starting error

2016-01-24 Thread James Jelinek (shakycode)
It’s telling you that you installed openssl installed as a gem which is a system binary and library. Remove that line from your Gemfile and run bundle again to rebuild your gemset. It should get rid of the error when launching rails server or rails s. -James > On Jan 24, 2016, at 12:41 PM,

[Rails] rails server starting error

2016-01-24 Thread Benyamin Pm
hi there. i'm new in ruby on rails. i using kali linux , i complete the rbenv and all the gems installation. now i create a demo and when i type this => rails server i get this error => Error! You've somehow installed openssl from rubygems.org Remove openssl from your Gemfile and delete it

[Rails] rails server load ERROR . I need help please

2015-10-15 Thread Hristijan Rizeski
Here is m problem C:\Users\Hice.Hice-HP\Sites\simple_cms>rails s C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/nokogiri-1.6.6.2-x64-mingw32/lib/nokogiri.rb:29:in `require': cannot load such file -- nokogiri/nokogiri (LoadError) I installed Ruby and Rails, also installed MySQL and mysql2 gem. I have

[Rails] Rails Server gets killed without a error message

2015-03-13 Thread Roelof Wobben
Hello, I working on a new project and made all the templates ready. But as soon as I do rails s I see this output : Started GET / for 82.74.205.109 at 2015-03-13 15:25:30 +

Re: [Rails] Rails Server gets killed without a error message

2015-03-13 Thread Vivek Sampara
What do you see in the logs ? On 13 Mar 2015 21:13, Roelof Wobben rwob...@hotmail.com wrote: Hello, I working on a new project and made all the templates ready. But as soon as I do rails s I see this output : Started GET / for 82.74.205.109 at 2015-03-13 15:25:30 + Killed Anyone a

Re: [Rails] Rails Server gets killed without a error message

2015-03-13 Thread Roelof Wobben
In the development logs nothing wierd : [1m [35mActiveRecord::SchemaMigration Load (6.7ms) [0m SELECT `schema_migrations`.* FROM `schema_migrations` Started GET / for 82.74.205.109 at 2015-03-13 13:16:32 + [1m [36mActiveRecord::SchemaMigration Load (0.3ms) [0m [1mSELECT

Re: [Rails] Rails Server gets killed without a error message

2015-03-13 Thread Colin Law
On 13 March 2015 at 15:29, Roelof Wobben rwob...@hotmail.com wrote: Hello, I working on a new project and made all the templates ready. But as soon as I do rails s I see this output : Started GET / for 82.74.205.109 at 2015-03-13 15:25:30 + Killed You have not said whether this is a

Re: [Rails] Rails Server gets killed without a error message

2015-03-13 Thread Roelof Wobben
Wierd. I do not see it this time. Maybe a hickup in a server, But now I see another wierd error. I have a page new who looks like this : h1New product/h1 %= render 'form' % %= link_to 'Back', products_path % Which leads to a file named _form.html who looks like this : %=

Re: [Rails] Rails Server gets killed without a error message

2015-03-13 Thread Vivek Sampara
How much RAM is available? Sometimes some processes get killed when they occupy too much of memory. Do this. Run server. Open another tab and type top. Refresh page and check memory consumption. On 13 Mar 2015 21:30, Roelof Wobben rwob...@hotmail.com wrote: In the development logs nothing wierd

Re: [Rails] Rails Server gets killed without a error message

2015-03-13 Thread Colin Law
On 13 March 2015 at 16:44, Roelof Wobben rwob...@hotmail.com wrote: Wierd. I do not see it this time. Maybe a hickup in a server, But now I see another wierd error. I have a page new who looks like this : h1New product/h1 %= render 'form' % %= link_to 'Back', products_path % Which

[Rails] rails server

2014-11-18 Thread Darko Vulin
I have done *bundle install* and *bundle update *successfully*.* But *rails server *is not working. I have also tried *rails s -p $PORT -b $IP*. *darko@darko-Lenovo-G570 ~/sample_app $ gem install execjs* Successfully installed execjs-2.2.2 Parsing documentation for execjs-2.2.2 Installing ri

Re: [Rails] rails server

2014-11-18 Thread Jason Fleetwood-Boldt
did you prepend bundle exec to your call to rails server ? On Nov 18, 2014, at 5:07 PM, Darko Vulin darkopm...@gmail.com wrote: I have done bundle install and bundle update successfully. But rails server is not working. I have also tried rails s -p $PORT -b $IP. darko@darko-Lenovo-G570

[Rails] rails server error

2013-12-26 Thread pavey nganpi
rails server = Booting WEBrick = Rails 4.0.2 application starting in development on

Re: [Rails] rails server error

2013-12-26 Thread Norm Scherer
You are attempting to start another servr at the same port as one which is already running. You need to find and kill the one before you can run another. On 12/26/2013 09:41 PM, pavey nganpi wrote: rails server = Booting WEBrick = Rails 4.0.2 application starting in development on

Re: [Rails] Rails server not starting and giving error messages

2013-12-21 Thread Colin Law
On 20 December 2013 03:07, Aniruddha Barapatre aniruddhabarapa...@gmail.com wrote: My current ruby version is ruby 2.0.0p247 (2013-06-27 revision 41674) [x86_64-darwin13.0.0] and rails version is 4.0.0 Every time I run any rails command I get following message first:

Re: [Rails] Rails server not starting and giving error messages

2013-12-21 Thread Aniruddha Barapatre
Colin, Created another new project with no errors. Although if I do --- bundle show rails or any gem file, it couldn't locate gemfile. This is what I have in my environment.rb # Load the Rails application. require File.expand_path('../application', __FILE__) # Initialize the Rails

Re: [Rails] Rails server not starting and giving error messages

2013-12-21 Thread Colin Law
On 21 December 2013 16:55, Aniruddha Barapatre aniruddhabarapa...@gmail.com wrote: Please don't top post, it makes it difficult to follow the thread. Thanks. Colin, Created another new project with no errors. Good Although if I do --- bundle show rails or any gem file, it couldn't

Re: [Rails] Rails server not starting and giving error messages

2013-12-21 Thread Aniruddha Barapatre
I tried running bundle show rails from my project, parent and home folder. Everytime I got same message. On Saturday, December 21, 2013 11:04:31 AM UTC-6, Colin Law wrote: On 21 December 2013 16:55, Aniruddha Barapatre aniruddha...@gmail.com javascript: wrote: Please don't top post, it

Re: [Rails] Rails server not starting and giving error messages

2013-12-21 Thread Colin Law
On 21 December 2013 18:12, Aniruddha Barapatre aniruddhabarapa...@gmail.com wrote: I tried running bundle show rails from my project, parent and home folder. I asked that you not top post. Everytime I got same message. Go to the top level of your rails application (the folder where you have

Re: [Rails] Rails server not starting and giving error messages

2013-12-21 Thread Aniruddha Barapatre
Not sure what you really mean by top post. I'm not doing this on purpose. I'd avoid this if I know what exactly it is. I could run bundle install successfully but not rails server even once and get those above message. On Saturday, December 21, 2013 2:28:28 PM UTC-6, Colin Law wrote: On 21

Re: [Rails] Rails server not starting and giving error messages

2013-12-21 Thread Colin Law
On 21 December 2013 21:16, Aniruddha Barapatre aniruddhabarapa...@gmail.com wrote: Not sure what you really mean by top post. I'm not doing this on purpose. I'd avoid this if I know what exactly it is. http://lmgtfy.com/?q=top+post I could run bundle install successfully but not rails server

Re: [Rails] Rails server not starting and giving error messages

2013-12-21 Thread Aniruddha Barapatre
On Saturday, December 21, 2013 3:24:45 PM UTC-6, Colin Law wrote: On 21 December 2013 21:16, Aniruddha Barapatre aniruddha...@gmail.com javascript: wrote: Not sure what you really mean by top post. I'm not doing this on purpose. I'd avoid this if I know what exactly it is.

Re: [Rails] Rails server not starting and giving error messages

2013-12-21 Thread Colin Law
On 21 December 2013 21:32, Aniruddha Barapatre aniruddhabarapa...@gmail.com wrote: On Saturday, December 21, 2013 3:24:45 PM UTC-6, Colin Law wrote: On 21 December 2013 21:16, Aniruddha Barapatre aniruddha...@gmail.com wrote: Not sure what you really mean by top post. I'm not doing this on

Re: [Rails] Rails server not starting and giving error messages

2013-12-21 Thread Aniruddha Barapatre
On Saturday, December 21, 2013 3:39:01 PM UTC-6, Colin Law wrote: On 21 December 2013 21:32, Aniruddha Barapatre aniruddha...@gmail.com javascript: wrote: On Saturday, December 21, 2013 3:24:45 PM UTC-6, Colin Law wrote: On 21 December 2013 21:16, Aniruddha Barapatre

Re: [Rails] Rails server not starting and giving error messages

2013-12-21 Thread Colin Law
On 21 December 2013 21:56, Aniruddha Barapatre aniruddhabarapa...@gmail.com wrote: ... I think we've some miscommunication over here. Yes you are correct. I created a new rails app -- rails new dummy ... If I give cmd -- rails server, it runs successfully. Although if I go back to my

Re: [Rails] Rails server not starting and giving error messages

2013-12-21 Thread Aniruddha Barapatre
On Saturday, December 21, 2013 4:21:08 PM UTC-6, Colin Law wrote: On 21 December 2013 21:56, Aniruddha Barapatre aniruddha...@gmail.com javascript: wrote: ... I think we've some miscommunication over here. Yes you are correct. I created a new rails app -- rails new dummy ...

[Rails] rails server doesn't work properly

2013-03-18 Thread powi
Everything was ok, until suddenly when I do a rails server, I get this output: http://pastie.org/6603101. This happened also on some applications before, suddenly. I'm using *RVM* and I'm inside the apps root folder. I'm also using* Rails edge*. $ ruby -v = ruby 2.0.0p0 (2013-02-24 revision

[Rails] Rails server on IPv6

2013-02-13 Thread test test
Hi, I am new to Ruby on Rails. I installed 3.0.18 on Cent OS 6 for testing. I used following command to create a demo application #rails new demo Then goto this demo dir and use (without changing anything inside the demo dir) #rails server -p 80 -b :: to make it listen on IPv4 and IPv6 both.

[Rails] Rails server not starting

2013-01-29 Thread Tristin G.
Hello, Im currently having troubles getting my rails server to start. I was working on it fine yesterday, but now it seems like it isn't working at all. These are the errors i get when i try and start the server up, C:\Users\Tristin\treebookrails server C:/Program Files

Re: [Rails] Rails server not starting

2013-01-29 Thread Tom Meinlschmidt
Aren't you using rvm? is your rails installed? try gem list rails and check result, it should print something like gem list rails *** LOCAL GEMS *** rails (3.0.0, 2.3.8, 2.3.2, 2.2.2) if not, do gem install rails tom On Jan 29, 2013, at 20:56 , Tristin G. li...@ruby-forum.com wrote:

[Rails] Rails server start show error

2012-04-04 Thread CC Chen
Hi all, ruby: 1.9.2 rails: 3.2.3 OS: redhat5 I create a new rails project. -- 'rails proj3' I exec rails server want to check it can start or not, but it show below error message. *

[Rails] rails server error (rails 3) in windows

2012-03-19 Thread jack cognac
Hey all, I'm trying to learn RoR with absolutely no programming experience following the ruby on rails essentials tutorial on lynda.com. I'm still very early in the video series and I created a new project using the command: rails new simple_cms -d mysql but when I try to launch the web server,

Re: [Rails] rails server error (rails 3) in windows

2012-03-19 Thread Javier Quarite
Have you add mysql gem? (maybe you have added it but just in case ) Javier -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to rubyonrails-talk@googlegroups.com. To unsubscribe from this group, send email

Re: [Rails] rails server error (rails 3) in windows

2012-03-19 Thread Javier Quarite
sorry my bad, I've seen it :) It seems that its a windows problem -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to rubyonrails-talk@googlegroups.com. To unsubscribe from this group, send email to

Re: [Rails] Rails Server unable to run commands as daemon

2011-11-05 Thread Michael Pavling
On 4 November 2011 18:00, Chris Hughes 89dra...@gmail.com wrote: I am running rails server as a daemon on ubuntu server. My controller uses `#{command}` to run a python image processor and return the output. After several requests and hours of uptime the server stops working when it hits this

[Rails] Rails Server unable to run commands as daemon

2011-11-04 Thread Chris Hughes
I am running rails server as a daemon on ubuntu server. My controller uses `#{command}` to run a python image processor and return the output. After several requests and hours of uptime the server stops working when it hits this command, stating that it got no output. But the command runs fine on

[Rails] Rails server finds syntax error where there shouldn't be one

2011-10-22 Thread Friedrich H.
Hi! I'm developing an application at two different computers, using Dropbox to synchronize my files. I feel quite sure that the configuration of rails, ruby, editor and the lot is identical on both computers and up-to-date. But strangely, when I start the server for testing purposes (with rails

Re: [Rails] Rails server finds syntax error where there shouldn't be one

2011-10-22 Thread radhames brito
...sion_store :cookie_store, key: '_suggestMe_session' seems to be using ruby 1.9 hash types that are like json hashes , and those are not supported on ruby 1.8 -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group,

[Rails] rails server being aborted due to mysql lib file not available

2011-07-18 Thread nisha
Hi, My system has the following : MacOs Leopard Rails 3 Ruby 1.9 Mysql 5.1.58 mysql2 ruby gems My problem is that when i give rails server, the task aborts with the foll error rails server/Users/nisha/.rvm/gems/ruby-1.9.2-p180@rails3/gems/ railties-3.0.5/lib/rails/script_rails_loader.rb:11:

[Rails] Rails server comand won't start server: creates new directories

2011-05-12 Thread Craig Cherlet
When I try to start the rails server in my project root directory, rails executes the create script. Was working yesterday and now doing this. Any help? My out put is below. VACSAL50841-2:sample_app ccherlet$ rails server create create app/controllers create app/helpers

[Rails] Rails server not works - yesterday worked fine

2011-03-14 Thread Manny 777
Hello there, I've a big problem -- I come now PC and started rails server and I got this huge report of errors. The rails server is not running, I've any idea, what is wrong. Yesterday everything worked yet... The statement after command rails server is here: = Booting Mongrel = Rails 3.0.5

Re: [Rails] Rails server not works - yesterday worked fine

2011-03-14 Thread Vladimir Rybas
Address already in use - bind(2) On Tue, Mar 15, 2011 at 12:39 AM, Manny 777 li...@ruby-forum.com wrote: Hello there,  I've a big problem -- I come now PC and started rails server and I got this huge report of errors. The rails server is not running, I've any idea, what is wrong. Yesterday

Re: [Rails] Rails server not works - yesterday worked fine

2011-03-14 Thread Chris Mear
On 14 March 2011 21:39, Manny 777 li...@ruby-forum.com wrote:  I've a big problem -- I come now PC and started rails server and I got this huge report of errors. The rails server is not running, I've any idea, what is wrong. Yesterday everything worked yet... The statement after command rails

Re: [Rails] Rails server not works - yesterday worked fine

2011-03-14 Thread Vladimir Rybas
I mean I could been saying more, but you just have to figure it out. Don't afraid to look at the error messages. On Tue, Mar 15, 2011 at 12:47 AM, Vladimir Rybas vladimirry...@gmail.com wrote: Address already in use - bind(2) On Tue, Mar 15, 2011 at 12:39 AM, Manny 777 li...@ruby-forum.com

Re: [Rails] Rails server not works - yesterday worked fine

2011-03-14 Thread Peter Bell
The address is already in use. Easiest solution, just restart your PC. You could have left a process running rails without realizing it. You *could* try to find and kill the process, but a quick reboot should solve the problem. If it doesn't then you have probably installed something else

[Rails] Rails server does not take in account the production and still used development db

2010-11-30 Thread Gregory Grimaux
0 down vote favorite Hi, since several days I have this problem: For a few days it has worked and now I can't do it works again. I setup a rails server on ubuntu with apache-2. I used a git repository to get all new change. After I run sudo rake db:migrate RAILS_ENV=production But after have

[Rails] rails server command

2010-11-27 Thread Paul Roche
Hi. When I try and start my server using 'rails server' I get the following. Usage: rails new APP_PATH [options] Options: -r, [--ruby=PATH] # Path to the Ruby binary of your choice # Default: C:/InstantRails-2.0-win/ruby/bin/r xe -d,

Re: [Rails] rails server command

2010-11-27 Thread Brian Troutwine
Are you running rails server in the root of your project? On Sat, Nov 27, 2010 at 12:10 PM, Paul Roche li...@ruby-forum.com wrote: Hi. When I try and start my server using 'rails server' I get the following. Usage:  rails new APP_PATH [options] Options:  -r, [--ruby=PATH]           #

[Rails] Rails Server Failing - No such file or directory - tmp/pids/server.pid

2010-02-27 Thread Merrick Christensen
I apologize for my stupidity. I've been running rails on this machine for a few months. I have upgraded to Ruby on Rails 3 to start playing around. When running the rails server I get the following output. Any help is much appreciated. I installed Rails 3 very easily on my box at work. But here,

[Rails] Rails server error when rails starts

2010-01-24 Thread Kostas L.
Hi guys, i am having a little problem. I have installed ruby 1.9.1 and rails 2.3.5. Ruby is working just fine. The rails applications is being created fine. But when i run the command ruby script/server i get an error that says The program can't start because msvcrt-ruby18.dll is missing. I

[Rails] Rails server on linux

2009-09-29 Thread kitty00
Hi, I am trying to decide which Linux OS to use to implement rails server. I don't know if Debian is better or CentOS is better. Which one is easier to install, update and maintain rails server? Also, which rails application server do you recommend besides passenger with apache 2? Thanks!