Tagged Questions
The mod-rails tag has no wiki summary.
13
votes
3answers
3k views
modrails - rogue ruby processes consuming 100% cpu
I'm having ruby instances from mod_rails go "rogue" -- these processes are no longer listed in passenger-status and utilize 100% cpu.
Other than installing god/monit to kill the instance, can ...
12
votes
7answers
1k views
is mod_rails or Phusion Passenger finally the answer to Ruby on Rails Deployment?
I read from some books that Phusion Passenger is the answer to easy Ruby on Rails deployment. But my friend said that first there was Apache + bunch of Mongrels, and then lighttpd, and then nginx, ...
5
votes
3answers
241 views
Is there an easy way to run Garbage Collection outside of the request cycle in Passenger?
Unicorn has OobGC rack middleware that can be used to run GC.start after a certain number of requests.
Is there a similar sort of thing in Phusion Passenger?
5
votes
4answers
4k views
mod_rails and Paperclip problem Paperclip::NotIdentifiedByImageMagickError
I am havingn troble deploying my app to a server runing ubuntu with mod_rails. Runing webrick on the server seems fine and I can save files, no problem. But runing the app thru nginx, I get this error ...
4
votes
4answers
2k views
Rails file upload size limit
Does anyone know a good solution to limit the file upload size when running a Rails application with Passenger/mod_rails. The request should immediately be declined, so that the file doesn't get ...
4
votes
4answers
3k views
Passenger/mod_rails fails to initialize in Fedora 12 when starting Apache
I am in the process of setting up a server to run a Ruby on Rails application on Fedora 12, using Passenger.
I am at the stage where I've installed Passenger, set it up as prescribed, but get the ...
4
votes
3answers
2k views
How to monitor passenger / mod_rails processes?
I searched the site already but couldn't find any suitable information. As there is always some expert around I'm sure one of guys knows exactly what I'm searching for :-)
We're on a balanced system:
...
3
votes
2answers
144 views
How do I figure out why my rails 3 app, using mod_rails, is so slow?
I've developed a small Rails app, using Rails 3.0.0 and Ruby 1.9.2. During test, on my personal computer, it's performance is fine. I put it on my VPS for production, using Apache and mod_rails, and ...
3
votes
2answers
322 views
Mod_rails and mongrel running on the same server?
I'm currently running mongrel clusters with monit watching over them for 8 Rails applications on one server.
I'd like to move 7 of these applications to mod_rails, with one remaining on mongrel. The ...
2
votes
2answers
235 views
RoR 3, Passenger, Relative URLs, and helper methods such as root_url
I'm really struggling to understand the routing behaviour I'm seeing with a Rails 3 app as it relates to Passenger and routing helper methods. Here's a quick overview:
When a user registers for my ...
2
votes
1answer
836 views
Rails Beta3 & PaperClip & Passenger Bundler::PathError
So I'm going around in circles with this - I'm using a fork of the Paperclip Rails gem to get it to work with Rails3. Works fine on my OSX box with Passenger. But on my server (CentOS 5) I get this ...
2
votes
2answers
1k views
Configuring Rails CSS Caching with Passenger
I am using Passenger and Rails' :cache => true to cache all my css into one big file. Deploys are done via Capistrano.
Now sometimes(!), the mem-generated all.css file can't be found after the app ...
2
votes
2answers
886 views
mod_rails make: command not found
I'm setting up mod_rails on a Debian server but somehow something got screwed up (it wasn't me :P ).
gem install passenger
Building native extensions. This could take a while...
ERROR: Error ...
1
vote
1answer
209 views
Remote debugging Rails application in Aptana Studio 3
My Rails development IDE is Aptana Studio 3.0.5, running on Windows.
The applications runs on Apache + ModRails (Phusion Passenger) on a separate CentOS Linux machine. I have both Rails 2.x and 3.x ...
1
vote
0answers
276 views
phusion passenger mod_rails on apache hanging
I run Apache 2.2.3 with passenger 3.0.7 (on a prehistoric SLES11 linux).
when a request goes through passenger, it spawns the app process but then hangs forever as if no app could start up.
I tested ...
1
vote
1answer
195 views
Does passenger not work with Rewrite rules in an .htaccess file?
I have a rewrite rule that only works when in a virtualhost context.
PassengerEnabled on
RewriteEngine on
RewriteRule ^/release-.+/(images|javascripts|stylesheets|system|assets)/(.*)$ /$1/$2 [L]
...
1
vote
1answer
368 views
How to deploy multiple rails apps on one domain without symbolic links
According to the passenger documentation it is possible to deploy multiple rails apps on one domain by setting a central rails app and then link in other apps by creating symbolic links in the public ...
1
vote
1answer
710 views
How to server multiple sites with nginx/passenger?
I have different websites/applications built with rails, which has different domain names. The thing is i want to serve them from a server with nginx/passenger. I tried some techniques, but i cannot ...
1
vote
3answers
345 views
VirtualHost problem with passenger (mod_rails)
I'm at my wit's end here with virtual hosting. I'm trying to install redmine and it works with the webrick test server, but when I tried to use passenger (mod_rails) to host and go to the address I ...
1
vote
5answers
60 views
Archiving an Entire Rails Site
I have a Ruby on Rails site that was only needed for a short period of time during which users added various objects to a mySQL database, commenting on them, associating themselves with them, etc. ...
1
vote
1answer
102 views
Rails page caching with intra-page administration
I'd love to use page caching on a Rails site I run. The information on each page is mostly constant, but the queries that need to be run to collect the information are complicated and can be slow in ...
1
vote
1answer
416 views
Change the Passenger application pool size at runtime
Is it possible to change the Passenger application pool size at runtime? Ie, without restarting apache, and without disrupting active visitors?
The same time every day we have a background job run. ...
1
vote
8answers
732 views
Should I give up on deploying Rails under Windows?
I run an instance of a rails application that is developed by another team. Back when I started, the common way to deploy Rails apps was to use Mongrel behind Apache, and that's the configuration that ...
1
vote
2answers
2k views
How to disable caching in Rails?
How can I disable caching for my rails site?
I'm running Passenger (mod_rails) and my site is running in 'development' mode:
'ENV['RAILS_ENV'] ||= 'development'
Any help?
1
vote
2answers
617 views
mod_ruby on apache: Very slow
Even a request from the server itself takes about 7 seconds ( startpage of a "redmine" installation )..
When running ruby under WEBrick the same request only takes miliseconds...
I am absolutely new ...
1
vote
1answer
365 views
Using mod_rails to host multiple apps under SSL, same domain
I'm trying to get multiple rails apps hosted under the same domain, but different directories. My configuration before attempting to host multiple apps (which works great), looks like this:
...
1
vote
4answers
107 views
Is it ok to use different different OSes for production/development servers with Rails?
Say, I love Debian+mod_rails and run it on my laptop which is my development platform. Yet, I am deploying to a production server running Ubuntu+mod_rails.
Is it better in a long run if I install ...
0
votes
0answers
20 views
Boot Apache with Passenger/mod_rails successfully when Fedora starts up
PREMISE and PURPOSE
There is this thread about Passenger/mod_rails fails to initialize in Fedora 12 when starting Apache . Bottom line, the problem is due to the permission, and you can avoid this by ...
0
votes
2answers
312 views
Rails Passenger problem with Apache2
I'm trying to setup a ruby on rails server on ubuntu10.10 with apache2 and mod_rails (Phusion Passenger).
I already installed ruby 1.9.2-p0 and rails 3.0.8 and installed Passenger with the ...
0
votes
1answer
123 views
Ruby on Rails and standard mod_rewrite
I've got an old application written in PHP and now I am replacing it by new RoR app. The old application has links like "this-is-seo-title,n123.html". In htaccess there is a rule which is translating ...
0
votes
1answer
1k views
How do I restart phusion passenger?
rails@george:/srv/fsg_distro$ sudo passenger-status
*** Phusion Passenger: no passenger_native_support.so found for the current Ruby interpreter. Compiling one...
# mkdir -p ...
0
votes
1answer
245 views
Trying to run Rails App with Apache/Passenger, but getting 404s
I've installed passenger (don't know if the installation is correct) onto apache (i'm just using a development macintosh running snow leopard).
the httpd.conf file has a VirtualHost setting like this
...
0
votes
2answers
553 views
Not able to upload in a passenger app behing apache
Am not able to upload a 8.4 MB file, in a passenger app behind apache. Transferring the same file via scp took 4.1 minutes.
Error backtrace:
[ pid=10222 file=ext/apache2/Hooks.cpp:727 ...
0
votes
1answer
167 views
Passenger and Rails on Scalr.net
I'm having an issue with Passenger and Rails working together on my Scalr application server.
I have Rails 2.3.5 installed and Passenger 2.2.7. I am running ruby 1.8.6 (patchlevel 111). Previous ...
0
votes
1answer
510 views
Phusion Passenger, mod_rails rails 2.3 problem
"The application has exited during startup (i.e. during the evaluation of config/environment.rb). The error message may have been written to the web server's log file. Please check the web server's ...
0
votes
2answers
1k views
How to uninstall Passenger (mod_rails) from nginx?
I've a running nginx and Ubuntu 8.09 site running a rails app -- but we are not making use of Peassenger anymore and it seems to take up a lot of memory.
I google around and there's tons of info on ...
0
votes
2answers
97 views
Rails application deployed and working, but MySQL database appears empty
I've deployed a Ruby on Rails application using mod_rails and nginx over Capistrano, and it's working perfectly, but I have a baffling problem.
When I run the following command on the server:
SHOW ...
0
votes
1answer
541 views
Apache w/mod_rails segmentation fault
I am running Redmine on Apache 2 with mod_rails (passenger) 2.0.3 and Enterprise Ruby 1.8.6. Every so often I get a segfault from Apache when I try to login. Anyone know how I can debug this issue? I ...
-1
votes
3answers
296 views
says if i develop a Ruby on Rails application using Rails 2.3.2, will that usually be compatible with Passenger on my hosting company?
says if i develop a Ruby on Rails application using Rails 2.3.2, will that usually be compatible with Passenger on my hosting company?
If i ssh to my hosting company and type rails -v, i get 2.2.2... ...