[Rails] Re: rails server starting error

2016-01-24 Thread Benyamin Pm
hi james. thanks for your reply i uninstall openssl and type in treminal => bundle install openssl error is gone. but when i type this=> rails server again i get this=> /usr/local/lib/ruby/gems/2.3.0/gems/activesupport-4.2.5/lib/active_support/key_generator.rb:2:in `require': cannot load such

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

2015-10-15 Thread Prkl8r
https://github.com/sparklemotion/nokogiri/issues/1259 Taking a look at this thread, you may need to downgrade your ruby version. Looks like that solution worked for others hitting this error. On Thursday, October 15, 2015 at 2:20:03 PM UTC-5, Hristijan Rizeski wrote: > > Here is m problem > >

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

2015-03-19 Thread Leandro França
I had these random killed messages in the past and it was a memory issue. I was using vagrant box, and in my case I just increased the ram available to the VM. Em sexta-feira, 13 de março de 2015 12:44:08 UTC-3, Roelof Wobben escreveu: Hello, I working on a new project and made all the

Re: [Rails] Re: rails server

2014-11-22 Thread Darko Vulin
Yes you are right. I tried ruby -v and rails -v after I posted my problem here and I got messages that I don't have them installed aldough I installed the so I serched help about RVM. And that command solved my problems. 2014-11-21 17:11 GMT+01:00 Colin Law clan...@gmail.com: On 21 November

[Rails] Re: rails server

2014-11-21 Thread Darko Vulin
I am usung Linux Mint 17 and RVM so I created an issue on https://github.com/wayneeseguin/rvm/issues/3153 exec bash -l helped Dana srijeda, 19. studenoga 2014. 08:25:36 UTC+1, korisnik Gusoi Constantin - Codrut napisao je: try `sudo apt-get install nodejs` On Wednesday, November 19,

Re: [Rails] Re: rails server

2014-11-21 Thread Colin Law
On 21 November 2014 16:05, Darko Vulin darkopm...@gmail.com wrote: I am usung Linux Mint 17 and RVM so I created an issue on https://github.com/wayneeseguin/rvm/issues/3153 That issue does not seem to have much to do with the javascript runtime problem that you asked about. Colin -- You

[Rails] Re: rails server

2014-11-18 Thread Gusoi Constantin - Codrut
try `sudo apt-get install nodejs` On Wednesday, November 19, 2014 12:07:22 AM UTC+2, Darko Vulin 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 ~/sample_app $

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

2014-01-23 Thread John Ivanoff
I aggree. SQLITE will work fine. the only difference will be your config/database.yml When you do rails new project_name rails will set up the yml properly. I wrote a post back 2010 on setting up rails 2 sqlite on XP http://blog.johnivanoff.com/2010/09/ruby-192-rails-3-clean-install-on.html

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

2014-01-22 Thread p val
it's not that necessary to use mysql so early if u're just learning RoR. just start a new project without mysql options: rails new project_name On Tuesday, March 20, 2012 1:54:25 AM UTC-3, Ruby-Forum.com User wrote: Hey all, I'm trying to learn RoR with absolutely no programming experience

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

2014-01-21 Thread Chris Cox
Hi Guys Struggled some time with this, but found the issue appears to be the line in the mysql2.rb file: require mysql/mysql Removing this works better however the server doesn't start normally. When I copied the mysql.rb file from the mysql folder to

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

2014-01-21 Thread Chris Cox
Further to the above I decided to start again with a clean install using railsinstaller. Went through similar issues but on renaming mysql2.rb and not having an old mysql.rb file in the path, I found it was erroring on line 72 of runtime.rb which when I commented out :

[Rails] Re: rails server error

2013-12-28 Thread Adrien Siami
If you're running *NIX you can see which process is listening on port 3000 by running lsof -i :3000 You can also change the port you want your rails server to listen to with the -9 option. For example : rails server -p 8080 will listen on port 8080. On Friday, December 27, 2013 6:45:17 AM

[Rails] Re: rails server error

2013-12-26 Thread pavey nganpi
i have restarted my pc but i still have the same pb, i wasnt able to fins the process which was running,thanks On Thursday, December 26, 2013 11:41:45 PM UTC-5, pavey nganpi wrote: rails server

[Rails] Re: rails server doesn't work properly

2013-03-18 Thread powi
Forgot! These are my .bash_profile .profile files (I'm on Mountain Lion): http://pastie.org/6603536 -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To unsubscribe from this group and stop receiving emails from it, send an email to

[Rails] Re: Rails server not starting

2013-01-29 Thread Tristin G.
Okay this is what happened after typing the above, C:\Users\Tristin\treebookgem list rails *** LOCAL GEMS *** C:\Users\Tristin\treebookgem install rails ERROR: While executing gem ... (Errno::EACCES) Permission denied - C:/Program Files (x86)/ruby-1.9.2/lib/ruby/gems/1.9.1/ge

[Rails] Re: Rails server start show error

2012-04-05 Thread YogiZoli
Installing Nodejs might be best but Gems mentioned here are also solve this problem: $ gem install execjs therubyracer On Apr 5, 4:40 am, CC Chen li...@ruby-forum.com wrote: CC Chen wrote in post #1055038: Hi all, ruby: 1.9.2 rails: 3.2.3 OS: redhat5 I create a new rails

[Rails] Re: Rails server start show error

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

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

2012-03-20 Thread jack cognac
Javier Quarite wrote in post #1052402: Have you add mysql gem? (maybe you have added it but just in case ) Javier I'm pretty sure I did, gem install mysql, correct? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups Ruby

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

2012-03-20 Thread Javier Quarite
Yes, have you installed it using rails installer? or something else? -- 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

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

2012-03-20 Thread Luis Lavena
On Tuesday, March 20, 2012 1:54:25 AM UTC-3, Ruby-Forum.com User wrote: 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

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

2011-10-22 Thread Frederick Cheung
On Oct 23, 12:11 am, Friedrich H. li...@ruby-forum.com wrote: 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.

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

2011-08-07 Thread Ben M.
I had this problem. I deleted my app's directory and brought down the code from scratch from GitHub. Rails server worked after that. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to

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

2011-07-18 Thread Frederick Cheung
On Jul 18, 7:29 pm, nisha nisha0...@gmail.com wrote: Hi, My system has the following : MacOs Leopard Rails 3 Ruby 1.9 Mysql 5.1.58 mysql2 ruby gems I have tried all the suggested methods, without any success., The .bash_profile file is updated to contain the DYLIB in the path. The

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

2011-05-13 Thread Eugen Ciur
Was working yesterday and now doing this. Probably yesterday you installed rvm and switched to rvm 1.9.2 with new rails 3. When you logged in today your rvm, it used as default system's ruby which contains rails 2.x. Use this command to make your ruby 1.9.2 + rails3 environment default one for

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

2011-05-12 Thread Brett Turner
Try 'ruby script/server' On May 12, 5:04 pm, Craig Cherlet li...@ruby-forum.com wrote: 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

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

2011-03-15 Thread gezope
Hey, restart or use the line which others alreay gave you: rails server -p 3001 because it 'll start your server on another port which is not in use yet. If you're beginner try these sources: http://guides.rubyonrails.org/ http://ruby.railstutorial.org/ruby-on-rails-tutorial-book You can browse

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

2011-03-14 Thread Manny 777
Hi Vladimir, I'm newbie in RoR and I don't now, what this line mean... what I must to fix/what is wrong? I'm sorry for these stupid questions... -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group.

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

2011-03-14 Thread Manny 777
Thanks guys for your hints, I tried to restart PC and started rails server again. But I got more errors: = Booting Mongrel = Rails 3.0.5 application starting in development on http://0.0.0.0:3001 = Call with -d to detach = Ctrl-C to shutdown server Mon Mar 14 23:07:16 +0100 2011: Read error:

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

2010-12-01 Thread Vladimir Rybas
I'm sorry I don't understand what you mean by *nix maybe you're talking about nginx He is talking about UNIX dude On Wed, Dec 1, 2010 at 10:38 AM, Gregory Grimaux li...@ruby-forum.com wrote: Marnen Laibow-Koser wrote in post #965154: Gregory Grimaux wrote in post #965148: 0 down vote

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

2010-11-30 Thread Marnen Laibow-Koser
Gregory Grimaux wrote in post #965148: 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

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

2010-11-30 Thread Gregory Grimaux
Marnen Laibow-Koser wrote in post #965154: Gregory Grimaux wrote in post #965148: 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

[Rails] Re: rails server command

2010-11-28 Thread gezope
Hello, your first problem occurs when your not in your app's folder, or if your ruby or rails version isn't well. The second one is different: it's about sqlite3. Please write in cmd: 'ruby -v' should be 1.9 'rails -v' should be 3.+ 'gem -v' should be 1.3.7 'gem list' - here you should see

Re: [Rails] Re: rails server command

2010-11-28 Thread Walton Hoops
On 11/27/2010 10:28 AM, Paul Roche wrote: Ah, I created a new app, specific to the new ruby version. When I try and run the server I get an error mesasge. Please find attached Attachments: http://www.ruby-forum.com/attachment/5468/error.JPG The punchline is your version of sqlite3.dll is

[Rails] Re: rails server command

2010-11-27 Thread Paul Roche
I think so. I run it from rails_app/project_name I am using instant rails. I was running ruby v 186, then I downloaded 192 and literally copy and pasted the 192 files into the ruby folder in instantrails, overwriting what existed before hand. I'm not sure if here lies the problem -- Posted

Re: [Rails] Re: rails server command

2010-11-27 Thread Brian Troutwine
On Sat, Nov 27, 2010 at 12:17 PM, Paul Roche li...@ruby-forum.com wrote: I think so. I run it from rails_app/project_name Do be sure that rails_app/project_name is a rails3 app. I am using instant rails. I was running ruby v 186, then I downloaded 192 and literally copy and pasted the 192

[Rails] Re: rails server command

2010-11-27 Thread Paul Roche
Ah, I created a new app, specific to the new ruby version. When I try and run the server I get an error mesasge. Please find attached Attachments: http://www.ruby-forum.com/attachment/5468/error.JPG -- Posted via http://www.ruby-forum.com/. -- You received this message because you are

Re: [Rails] Re: rails server command

2010-11-27 Thread Brian Troutwine
On Sat, Nov 27, 2010 at 12:28 PM, Paul Roche li...@ruby-forum.com wrote: Ah, I created a new app, specific to the new ruby version. When I try and run the server I get an error mesasge. Please find attached Attachments: http://www.ruby-forum.com/attachment/5468/error.JPG Ah, I'm afraid

[Rails] Re: rails server command

2010-11-27 Thread Paul Roche
Hi, I'd like to bump this thread if this is ok? My main objective is for people to take a look at this error message I get when running 'rails server' Attachments: http://www.ruby-forum.com/attachment/5472/error.JPG -- Posted via http://www.ruby-forum.com/. -- You received this message

Re: [Rails] Re: rails server command

2010-11-27 Thread Brian Troutwine
On Sat, Nov 27, 2010 at 6:57 PM, Paul Roche li...@ruby-forum.com wrote: Hi, I'd like to bump this thread if this is ok? My main objective is for people to take a look at this error message I get when running 'rails server' Have you googled your error message? I found more than a few references

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

2010-03-01 Thread ChrisT
No idea why it's failing, but just make the directory yourself for now. From rails root: mkdir temp;mkdir temp pids On Feb 28, 9:31 pm, Merrick Christensen merrick.christen...@gmail.com wrote: Nobody? -- You received this message because you are subscribed to the Google Groups Ruby on Rails:

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

2010-03-01 Thread ChrisT
Er, mkdir tmp;mkdir tmp/pids I ran into the same issue and making these directories by hand cleared it up just fine. On Mar 1, 9:04 am, ChrisT ccth...@gmail.com wrote: No idea why it's failing, but just make the directory yourself for now. From rails root: mkdir temp;mkdir temp pids On Feb

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

2010-02-28 Thread Merrick Christensen
Nobody? -- 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-t...@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com. For more options,

[Rails] Re: Rails server error when rails starts

2010-01-24 Thread Alpha Blue
For starters, as it appears you are developing in windows, make sure you are using the right Ruby 1.9.1 platform. Here's the correct one: http://rubyforge.org/frs/?group_id=167 Use the rubyinstaller-1.9.1-p243-rc1.exe one. You'll also need to download the developer kit so you can compile some

[Rails] Re: Rails server error when rails starts

2010-01-24 Thread Alpha Blue
Also, one other note: I was helping to troubleshoot a person's problem awhile back and I wrote a quick outline of a complete installation with ruby and ruby on rails here: http://www.ruby-forum.com/topic/202311#881151 Read all of it before you begin. -- Posted via

[Rails] Re: Rails server on linux

2009-10-06 Thread kitty00
Thanks! I will give it a try! On Oct 1, 2:54 pm, Greg Donald gdon...@gmail.com wrote: On Thu, Oct 1, 2009 at 2:50 PM, Marnen Laibow-Koser rails-mailing-l...@andreas-s.net wrote: I'll try that sometime.  For the second time in this thread, though: why is Nginx better?  Just speed? It's

[Rails] Re: Rails server on linux

2009-10-01 Thread kitty00
Thank you for the clarification! On Sep 29, 4:52 pm, Greg Donald gdon...@gmail.com wrote: On Tue, Sep 29, 2009 at 3:41 PM,kitty00yanl...@gmail.com wrote: I don't know if Debian is better or CentOS is better. 99% of the software you find inside will be the same.  Every Linux distro uses the

[Rails] Re: Rails server on linux

2009-10-01 Thread kitty00
Thank you for the suggestion! I do prefer Debian as a server. On Sep 30, 3:05 am, Leonardo Mateo leonardoma...@gmail.com wrote: On Tue, Sep 29, 2009 at 10:41 PM,kitty00yanl...@gmail.com wrote: Hi, I am trying to decide which Linux OS to use to implement rails server. I don't know if

[Rails] Re: Rails server on linux

2009-10-01 Thread Fernando Perez
I've had some problems with Debian and Ubuntu in what comes to the version of the rubygems package. Usually it's outdated and if you need too new gems versions you will have problems. Install rubygems manually, always, period. I think Apache + Passenger is the best choice. Nginx +

[Rails] Re: Rails server on linux

2009-10-01 Thread Marnen Laibow-Koser
Fernando Perez wrote: I've had some problems with Debian and Ubuntu in what comes to the version of the rubygems package. Usually it's outdated and if you need too new gems versions you will have problems. Install rubygems manually, always, period. I don't seem to recall any problems on

[Rails] Re: Rails server on linux

2009-10-01 Thread Greg Donald
On Thu, Oct 1, 2009 at 2:50 PM, Marnen Laibow-Koser rails-mailing-l...@andreas-s.net wrote: I'll try that sometime.  For the second time in this thread, though: why is Nginx better?  Just speed? It's the fastest I've ever used. Resource usage? It uses the least memory of anything I've tried

[Rails] Re: Rails server on linux

2009-10-01 Thread Marnen Laibow-Koser
Greg Donald wrote: On Thu, Oct 1, 2009 at 2:50 PM, Marnen Laibow-Koser rails-mailing-l...@andreas-s.net wrote: I'll try that sometime. �For the second time in this thread, though: why is Nginx better? �Just speed? It's the fastest I've ever used. Resource usage? It uses the least

[Rails] Re: Rails server on linux

2009-09-30 Thread Rajinder Yadav
kitty00 wrote: 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

[Rails] Re: Rails server on linux

2009-09-30 Thread richard
Have running on Ubuntu 9.04, Rails 2.3.3, ruby 1.9.1p243. Only problem is I cannot get mongrel web server to run on 1.9.1p243. Also running on Debian, with ruby 1.8.6 Rails 2.3.4 Cheers Hi, I am trying to decide which Linux OS to use to implement rails server. I don't know if Debian is

[Rails] Re: Rails server on linux

2009-09-30 Thread Leonardo Mateo
On Tue, Sep 29, 2009 at 10:41 PM, kitty00 yanl...@gmail.com wrote: 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? I've had some problems with

[Rails] Re: Rails server on linux

2009-09-29 Thread Marnen Laibow-Koser
kitty00 wrote: 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? I'd recommend Ubuntu. Everything just works. Also, which rails application

[Rails] Re: Rails server on linux

2009-09-29 Thread Ar Chron
I've had no issues with Ubuntu 8.04 LTS. That's running Rails 2.1.0, ruby 1.8.6, nginx, mongrel_cluster, and MySQL. And Ubuntu 9.04 is running fine at home as well with Rails 2.3.2, ruby 1.8.6, nginx, mongrel_cluster, MySQL. -- Posted via http://www.ruby-forum.com/.

[Rails] Re: Rails server on linux

2009-09-29 Thread Marnen Laibow-Koser
Ar Chron wrote: I've had no issues with Ubuntu 8.04 LTS. That's running Rails 2.1.0, ruby 1.8.6, nginx, mongrel_cluster, and MySQL. And Ubuntu 9.04 is running fine at home as well with Rails 2.3.2, ruby 1.8.6, nginx, mongrel_cluster, MySQL. I've never used Nginx (well, except on a