Displaying 20 results from an estimated 20000 matches similar to: "Booting WEBrick ... server:invalid option: --trace ???"
2006 Mar 03
1
starting webrick from ruby (tar2rubyscript.rb)
I am using tar2rubyscript to package up a rails application and run it 
as one file from the server.
If you run script/server and have lighttpd install it will start lighty 
instead of webrick. So, thanks to Erik Veenstra''s suggestion, I add 
ARGV.unshift("webrick") to the init.rb file to force webrick to start:
ARGV.unshift("webrick")
load "script/server"
2010 Jan 09
9
Problem with Sessions
Hi,
Using Netbeans 6.7.1, 
Rails Gem Version 2.3.2
MySQL Server 5.1
I am currently doing the depot application from the pragmatic programmer
book (agile web development with rails) everything has been fine up until
the point of creating sessions. I know they are using an earlier version of
Ruby and the gems version is 2.2.2. As soon as I put the necessary code in
the website no longer works and
2009 Aug 19
27
First App- Error 500
I''ve created a simple  hello world app that doesnt appear to serve up
the view greeting.rhtml. :<
Any ideas ?
The error message is from development.log is...
# Logfile created on Tue Aug 18 16:49:55 -0400 2009/!\ FAILSAFE /!\
Tue Aug 18 16:50:34 -0400 2009
  Status: 500 Internal Server Error
  unknown error
PS . It does show the default web page ok at http://localhost:3000
just not
2008 Jul 21
2
webrick needs 80 seconds for starting
ruby script/console webrick
after 23 seconds:
=> Booting WEBrick...
after 78 seconds:
=> Rails application started on http://0.0.0.0:3000
=> Ctrl-C to shutdown server; call with --help for options
[2008-07-21 08:07:17] INFO  WEBrick 1.3.1
[2008-07-21 08:07:17] INFO  ruby 1.8.6 (2007-09-24) [i386-mswin32]
[2008-07-21 08:07:17] INFO  WEBrick::HTTPServer#start: pid=4664
port=3000
2006 Jul 27
7
cannot get past "Booting WEBrick"
Hi Everyone,
I am following the ''Agile Web Dev. with Rails'' book, and I used instant
rails to do the install on a Windows machine. Everything seemed to work
fine until I got to:
Booting WEBrick...
After that, nothing happens.  I tried creating a new rails application, but
I get the same
problem. I also tried reinstalling to no avail.
Any ideas?
Thanks for the help.
2009 Nov 04
7
About Unicorn Rack handler
Hi,
A couple days ago, I was trying to run Unicorn for Ramaze,
and found that `Unicorn.run'' didn''t share the same interface
with other Rack handlers, i.e. `options[:Host]'' and `options[:Port]''
Because of this, I can''t just use:
  Rack::Handler.register(''unicorn'', ''Unicorn'')
And invoke this:
 
2011 Sep 02
4
You have already activated rack 1.3.2, but your Gemfile requires rack 1.2.3.
Hi, guys,
I got the below error message when i  typed this command in terminal "rackup
config.ru" ,  the file config.ru is rails ''s configuration file.
You have already activated rack 1.3.2, but your Gemfile requires rack 1.2.3.
Consider using bundle exec. (Gem::LoadError)
So,  how should i do , thanks a lot.
-- 
You received this message because you are subscribed to the
2010 Apr 25
1
Has anybody succeed in getting Rails 3 to work in production?
Has anybody succeed in getting Rails 3 to work in production? I am
trying with Apache 2.2 and Passenger 2.2.12 but no luck. If you have
got Rails three to work in production on any server with any set up
could you please post the details (howto?) or a link to where such
information can be found.
All input gratefully received.
Paul Thompson
-- 
You received this message because you are
2005 Dec 28
2
where is WEBrick (daemon mode) output? not in log/server.log
I am running WEBrick in daemon mode (with the -d option). Where is the 
server output that would ordinarily be on my console if I ran without 
the -d option?
APP_ROOT/log/server.log is empty and not being appended to, though it is 
owned by the same user WEBrick is running as and has write permissions.
The only files in APP_ROOT/log are:
development.log
production.log
server.log
test.log
Where
2005 Mar 02
3
App behaves differently on Apache and Webrick
When running on the Webrick server (script/server), my app works fine. 
When running on Apache 2.0.52, I get the dreaded ''unitialized constant 
Merge'' error. Merge is the name of my model, the controller is 
MergesController.
The deadline looms, any help appreciated!
Thanks!
Regards,
   JJ
2006 Feb 10
2
Sudden Strange Webrick Error: Errno::ECONNABORTED
Hello,
I''ve been developing an application (on Windows), and everything was
going pretty well, but I suddenly began getting this weird error back
from Webrick after submitting something through ajax, and only through
ajax.  I''m submitting a form through ajax, and it is being process
properly - with all the interaction with the database happening
without problem.  The response
2006 Mar 21
3
Do module source code changes require reboot of WEBrick?
Assume that I refactor some code into a module and "require it into" my 
controller.
Do I then need to restart my WEBrick server each time that I change the 
module?
Thanks,
Wes
-- 
Posted via http://www.ruby-forum.com/.
2006 Jun 23
2
WEBrick hangs with OCI8?
Has anyone experienced "hangs" with the WEBrick/OCI8 combination?
The sequence of actions I perform to consistently get WEBrick to hang is:
1. start WEBrick
2. list a table form my Oracle 10g DB
3. startup sqlplus and update a few records in the table
4. go back to my browser and reload the table
   Here none of the chances I made directly to the table are reflected
in the listing.
  
2006 Feb 19
5
Memory use: WEBrick vs Apache
Hello,
>From purely a memory consumption standpoint, is it generally more 
efficient to run a simple Rails app using WEBrick alongside a separate 
apache installation or to run Rails under FCGI and use Apache to bridge 
to the Web?
I have looked through lots of docs and old forum posts. Most seem to 
center on just getting Apache+Rails running, or on speed.
I am really not concerned about my
2006 Jul 01
5
how can i set the default protocol of WEBrick to https?
On my server, stunnel is running to accept HTTPS (port 443) connection
from clients and redirect them to localhost:80. And on port 80 of my
server, WEBrick is running to accept HTTP connection.
In such situation, WEBrick generates URLs beginning with ''http://'',
not with ''https://''. So one can access to ''https://myserver/'', but
when he click on
2006 May 30
5
Implementing HTTPS with WEBrick?
All,
I would like to test some secure pages that I''m developing in my 
WEBrick-based development environment.
I''ve done some research and it appears that I need to create a new 
command that will start a HTTPS based WEBrick server.  Is this correct?
Also, it appears that the https.rb module is not included with the 
WEBrick bundled in Rails.  So, I will need to go get that
2006 Jun 27
2
Can''t run WEBRick with Plugin
After copying the acts_as_ferret pluin to my rails folder, I can''t boot 
WEBrick. Has anyone run into this before?
-- 
Posted via http://www.ruby-forum.com/.
2006 May 04
2
WEBrick initialisation problem
I am new to Ruby so I thought the best way to get into it would be to 
follow the ONLamp "Rolling with Ruby on Rails" intro. I followed the 
instructions to the letter and everything work just great, very 
impressive:-).
A couple of days later when I went back to it I got the following 
message when trying to start the WEBrick server.
U:\RoRProjects\cookbook>ruby script\server =>
2006 Jul 11
1
error when ''Booting WEBrick''
I encountered this problem yesterday so, I decided to build the whole
/app directory over but got the same thing again. what I did- I build
the MVC files for ''abc'', included abc.rb in /lib, appended
environment.rb with ''require abc'' and the service worked fine. And then
I did the same for ''xyz'' and ran the server but it failed. both abc.rb
and
2006 May 03
2
WEBrick initialisation error
I am new to Ruby so I thought the best way to get into it would be to
follow the ONLamp "Rolling with Ruby on Rails" intro. I followed the
instructions to the letter and everything work just great, very
impressive:-).
A couple of days later when I went back to it I got the following
message when trying to start the WEBrick server.
U:\RoRProjects\cookbook>ruby script\server
=>