Phusion Passenger is a module for the Apache and nginx webservers that enables serving of Ruby web applications.
8
votes
2answers
883 views
Are there any easy instructions for migrating from Phusion Passenger to Unicorn?
I am running into deployment issues with Phusion Passenger on a fairly large app: stalled processes on high loads, idle processes, slow firing up of an instance, etc. So I was looking into Unicorn, ...
6
votes
1answer
1k views
Bundle Install passes with no errors, but on visiting the site, I see an Error
If I run bundle install, the application passes, everything is properly installed.
But if I reboot nginx, and visit the site, I see the Passenger Error message.
Ruby (Rack) application could not be ...
5
votes
1answer
881 views
Phusion Passenger is throwing errors after upgrading Ruby and Rails using rvm
I recently upgraded my Rails setup to 3.1.3 and I'm having issues with Phusion Passenger loading an older app on this server. I got everything running on a testapp but I'm still having issues with ...
5
votes
3answers
276 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
2answers
258 views
how to compress javascript files served from my rails app running on apache/passenger?
I'm using Apache 2.2, Passenger 3.0.2, Rails 3.
I've managed to compress the css file by modifying the deflate.conf file. However, when I run the firefox addon yslow, it still says the javascript ...
5
votes
1answer
120 views
Is there some sort of mechanism in Phusion Passenger to keep whole applications from going down?
The following is beginning to become a huge problem for us.
We have about 15 Rails applications for our enterprise, running on a massive server. The problem occurs when two or three applications are ...
4
votes
2answers
558 views
error while loading shared libraries: libpcre.so.0: cannot open shared object file: No such file or directory
I just install Passenger 3.0.11 , Nginx
Starting nginx: /opt/nginx/sbin/nginx: error while loading shared libraries: libpcre.so.0: cannot open shared object file: No such file or directory
4
votes
4answers
595 views
How does RVM work in production with no users logged in?
Considering putting RVM into production (light duty) on a new machine. But I'm not visualizing how it will work if a user isn't logged in. RVM has been installed into /usr/local/rvm/bin/rvm so it is ...
4
votes
1answer
925 views
How to get a stack trace on all running ruby threads on passenger
I have a production ruby sinatra app running on nginx/passenger, and I frequently see requests get inexplicably stalled. I wrote a script to call passenger-status on my cluster of machines every ten ...
4
votes
1answer
428 views
configure nginx in passenger 3.0.2 stand alone
In older passengers (3.0.0) it was possible to configure the standalone nginx passenger (passenger start). In the .passenger-Dir there was a complete nginx installation ...
4
votes
3answers
720 views
Ruby on Rails Errno::EPIPE Broken pipe
I know there is a lot of people posting this online but I haven't been able to find a solution.
I receive Errno::EPIPE after my website hasn't been accessed for > 6-8 hours. I read about it maybe ...
4
votes
3answers
510 views
Rails with passenger only runs in development
Hey,
I have a problem on one of our webservers.
I'll try to explain it as clear as possible, but I'm not 100% aware of all the configuration of the server.
There are 2 sites running next to eachother ...
4
votes
3answers
10k views
deploying rails3 apps with bundler and phusion passenger: .bundle dir not found
i am trying to deploy rails3 apps with the latest phusion passenger 2.2.11 and ruby-enterprise-1.8.7-2010.01. i am using bundler, but passenger seems to not be able to find the .bundle dir.
error ...
4
votes
2answers
2k views
Does Phusion Passenger restart gracefully when I touch restart.txt
Will it finish serving all current requests before it restarts?
4
votes
1answer
2k views
phusion passenger and ruby 1.9.1 is it working already?
i have a production and a development machine, both running ubuntu 8.10 and both are running the latest phusion passenger. as i am using ruby 1.9.1 on my local development machine on osx, i wondered ...
3
votes
1answer
256 views
cache: [GET /] miss
I have deployed my RoR app on VPS with Apache2 + Passenger. After configuring the app, when I hit the submit the request from the browser, I get "cache: [GET /] miss" in my apache2/error.log
Please ...
3
votes
1answer
134 views
Can you reload a Rails app on Passenger in the same seamless way as you can reload one on Unicorn?
With Unicorn, you can restart and reload a Rails app with kill -USR2 [master process], which doesn't kill the process immediately, but starts a new master process + slave processes in the background. ...
3
votes
1answer
311 views
Rails 3 Asset Pipeline + Apache + Phusion Passenger
I am using Rails 3.1 w/asset pipeline, phusion 3.0.x and apache 2.2.17.
In the configuration documentation at http://guides.rubyonrails.org/asset_pipeline.html, in section 4.1.1 it states that I need ...
3
votes
2answers
1k views
Phusion Passenger Ubuntu 11.10
I just upgraded to ubuntu 11.10 and I have a problem starting phusion passenger. I get the following error:
/usr/bin/ld: ...
3
votes
1answer
188 views
Installed Nginx with passenger-install-nginx-module how do I uninstall
I'm on Mac OSX. Nginx is installed in /opt/nginx. Any thoughts?
3
votes
2answers
129 views
Phusion Passenger (for Dummies!)
I'm an experienced LAMP developer moving into Rails. I have a very stupid question to ask: what the hell does Phusion Passenger do?
I've read a lot of documentation, I've Googled, I've read ...
3
votes
1answer
1k views
Ruby on Rails 3 + Apache2 + Phusion Passenger: Bundler::GemNotFound exception
I'm trying to deploy a Rails app on an Apache2 server by using Phusion Passenger. While everything works well locally, I am getting the infamous "Bundler::GemNotFound" error while deploying:
Could ...
3
votes
1answer
288 views
Rails 3, mail and OpenSSL problems
I keep getting this error in my production enviroment
OpenSSL::SSL::SSLError (hostname was not match with the server certificate)
I really don't know much about certificates. I have configured rails ...
3
votes
2answers
727 views
Can my /public directory be a symlink with rails 3 + passenger 3 + nginx 0.8?
I'm putting together a rails deployment where the public directory is a
symlink to another directory on the system. This is with passenger 3 on
nginx .8. It does't seem to like that setup. Nginx ...
3
votes
2answers
147 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
1answer
596 views
apache says my DocumentRoot directory doesn't exist
I am using Phusion Passenger to deploy a rails application using apache2 on CentOS 5.5. For some reason, I keep getting this message when I start up apache:
> service start httpd
Starting httpd: ...
3
votes
1answer
1k views
Rails app running under Phusion Passenger shows only a white screen
I had posted another question earlier about deployment with Passenger. That problem turned out to be a permissions issue, and I fixed it by running chmod on the www folder recursively.
Now, I don't ...
3
votes
2answers
611 views
Sinatra enable :sessions not working on passenger/apache
Am having trouble getting enable :sessions to persist for a simple Sinatra app hosted on passenger/apache. I'm storing the state of session[:authorized] in a cookie. It works locally when hosted on ...
3
votes
1answer
788 views
mongoDB, passenger and performance issues with phusion passenger
i just stumbled across a posing on the mongodb-user list where there was a discussion about passenger and forking when using mongoDB with MongoMapper.
I just wanted to remind that Rails developers ...
2
votes
3answers
230 views
Rails 3.1: Couldn't find rake
I try run via Capistrano my app. Also i use:
Ubuntu 10.04.1 LTS
Phusion Passenger
PostgreSQL 9
Nginx
Rails 3.1.3
Ruby 1.9.3
After i did
cap deploy:update
It creates folders and etc.
Then ...
2
votes
0answers
22 views
Why GC Execution happens frequently and takes too long on my Ruby Rails with REE deployment?
I have a Ruby on Rails 3.0.9 application deployed on Apache 2.x with mod_ruby (REE). I collect performance statistics with NewRelic and I see that GC Execution happens too often and takes too much ...
2
votes
1answer
88 views
Changing Passenger Default Error Page for Nginx
Currently if there's a problem launching a Rails app on our server, users are taken to a Passenger error page with an error like "Ruby (Rack) application could not be started".
Is it possible to ...
2
votes
1answer
166 views
Google Chrome doesn't perform POST in a Facebook Canvas Tab application
I believe this is a difficult question to answer.
I've configured my facebook application with the following options:
Page Tab URL: https://www.myapp.com.br/
Secure Page Tab URL: ...
2
votes
1answer
118 views
Redmine Perfomance Inconsistency
I have a redmine instance deployed on a Linux x86_64 system and I am struggle with a funny performance inconsistencey issue. It behave like this:
Leave it alone for a couple of hours (no request to ...
2
votes
2answers
990 views
Ruby 1.9.3-p0 Passenger “Symbol not found: _ruby_current_thread”
Just updated to 1.9.3-p0, updated all my gems and whatnot, but my application still cannot start.
Passenger error:
Error message:
...
2
votes
1answer
501 views
Passenger Standalone vs Unicorn
Can someone please compare and contrast Passenger Standalone (formerly Passenger Lite) and Unicorn. I am strictly asking about Passenger Standalone, not the Apache module or Nginx module version most ...
2
votes
1answer
90 views
Ruby mod_passenger process timeout
A few Ruby apps I've worked with hang for a long time on slow calls causing processes to backup on the machine eventually requiring a reboot. Is there a quick and easy way in Passenger to limit a ...
2
votes
1answer
81 views
Does Rails create any connection pools to mysql? Is it a single threaded design?
How are connections to mysql handled in Rails 3?
Do multiple connections to the website share the same mysql connection, or does it take a connection from a connection pool and then release it once ...
2
votes
1answer
188 views
Passenger server upgrade: Processor (CPU) Cores VS Ram?
I went through documentation of Passenger to find out how many application instances it can run with respect to hardware configuration. Documentation only talks about RAM
The optimal value depends ...
2
votes
2answers
203 views
How to find maximum concurrent processes Passenger can create?
I'm running passenger with REE on a Rackspace cloud server. Is there any way to find out what is the maximum concurrent processes Passenger can create/handle with the provided infrastructure/hardware? ...
2
votes
1answer
243 views
no such file to load — rails/cli under Ruby Enterprise Edition 1.8.7
On a VPS I tried to install Ruby. Because of memory exhaustion problems, we were unable to compile ruby 1.9.2 , and we decided to give Ruby Enterprise Edition a try. This compiled without complaining ...
2
votes
2answers
723 views
Passenger 3 with RVM and Ruby 1.9.2
I'm up to install Passenger 3 with Ruby 1.9.2.
I configured RVM with Ruby 1.9.2 - ruby -v returns 1.9.2 - so far so good.
Then I installed the passenger gem again to have it for RVM.
After this I ...
2
votes
1answer
665 views
403 error with nginx + passenger + rails 3
I have simple application which works well on Apache but gives me error 403 after moving to Nginx.
Here is my configuration:
server {
server_name myapp.com;
access_log off;
root ...
2
votes
0answers
469 views
How to use different rails_env with nginx, passenger and redmine
I need to have redmine running in combination with nginx, phusion passenger and mysql. Because of the project requires several instances of redmine, which should be realized using different rails_env, ...
2
votes
1answer
357 views
Passenger on Nginx will not serve Rails 2.3.8 application after gems vendored
EDIT: Please note that the app comes up just fine in Passenger/Apache2. Just not in Nginx.
I just did a bunch of work getting my gem house in order (i.e. vendoring all my gems and putting the ...
2
votes
1answer
481 views
Apache; Phusion Passenger 3 RackBaseURI works only in Production environment for Rails 3
I have a few rails 3 applications which run under their own Rails/Rack BaseURI.
Under Passenger 2 I was using RailsBaseURI to "mount" individual rails apps under a single domain; this worked ...
2
votes
1answer
2k views
Development headers 'not found' when running passenger apache 2 module installer, but they are installed
I have been trying to install Passenger on a vps with the following:
CentOS release 4.5 (Final)
gcc version 3.4.6 20060404 (Red Hat 3.4.6-8) box
Apache/2.2.11 (Unix)
Ruby Enterprise Edition
Ruby ...
2
votes
1answer
387 views
Need help with monit alerts on connection of Nginx
I hope somewhere out there will be able to help me on this. I have my production evironment as follows:
Rails 2.3.5
Passenger 2.2.11
Nginx
Monit
It seems that everything is working as it's supposed ...
2
votes
0answers
371 views
How can I selectively clear the cache for Sinatra + Nginx + Phusion Passenger?
I have a modular Sinatra app running on nginx with Phusion Passenger. When I alter my app (and in particular, some YAML files which are used to generate pages), I'd like to be able to clear only the ...
2
votes
1answer
317 views
Rails App Maintenence Without Hindering Visitors
A Phusion Passenger error message isn't what I want my visitors to see if they landed on my site while I'm updating the back end.
So how do I get around this? Is my deployment process flawed from ...