Tagged Questions
A unicorn is a magical weaponized HTTP server for Ruby.
17
votes
1answer
1k views
Using God to monitor Unicorn - Start exited with non-zero code = 1
I am working on a God script to monitor my Unicorns. I started with GitHub's examples script and have been modifying it to match my server configuration. Once God is running, commands such as god ...
9
votes
2answers
493 views
Is there a way to tell RubyMine to not use webrick?
When I start my app up in RubyMine I want to be able to use unicorn and my unicorn configs. Is there any way to tell it not to use webrick but use something else like unicorn or thin?
8
votes
4answers
278 views
Rails Performance Tuning for Production?
I'm getting close to deploying an application built on Rails 3.1.x and started running some performance tests. After fiddling with ab for a bit, I'm seeing some very discouraging results yielding ...
8
votes
2answers
865 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, ...
7
votes
2answers
1k views
Thin vs. unicorn for development mode on Mac?
I'm shocked that this question hasn't been asked already, but I swear I looked everywhere. Are there advantages of thin over unicorn, or vice versa, when running Rails 3 in development mode?
5
votes
4answers
192 views
kill -9 and production application
Which problem can cause kill -9 in production application (in linux to be exact)?
I have application which do some periodical work, stopping these takes long time, and I don't care if some jobs will ...
4
votes
1answer
273 views
Stream console output through HTTP (with Ruby)
I am trying to run some commands remotely and SSH'ing in to the machine is not an option. What I am trying to do is setup a Sinatra app that runs some specific commands and streams the output through ...
4
votes
2answers
884 views
RVM & Unicorn deploy
My RVM is installed as root.
When I'm trying to start unicorn socket, it prints
user@9001-3:~$ /etc/init.d/unicorn start
Starting myapp app: /usr/bin/env: ruby: No such file or directory
unicorn.
...
4
votes
2answers
457 views
Ruby, Unicorn, and environment variables
While playing with Heroku, I found their approach of using environment variables for server-local configuration brilliant. Now, while setting up an application server of my own, I find myself ...
3
votes
1answer
71 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
68 views
Really need a db connection pool for unicorn rails?
I can't find any document describing database connection pooling effect for unicorn.
Unicorn forks several worker processes. I configured prefork and it's critical not to share database connections ...
3
votes
1answer
230 views
On Heroku, Cedar, with Unicorn: Getting ActiveRecord::StatementInvalid: PGError: SSL SYSCALL error: EOF detected
Heroku support says this has to do with their version of libssl on shared databases, but we've encountered it on a project that's on a dedicated database, too.
Basically this error happens every so ...
3
votes
1answer
349 views
Rails 3.1, Unicorn and Apache: static files
I have Rails 3.1, Unicorn and Apache setup. My Apache settings are below and production.rb looks like this. I like using h264 streaming but since Rails is serving these video files, the Apache Mod ...
3
votes
1answer
429 views
Unicorn vs Passenger Standalone behind nginx
I'm trying to decide between Unicorn and Phusion Passenger Standalone (formerly Phusion Passenger Lite). I want to host multiple apps on my server. I have nginx running and listening to port 80. I ...
3
votes
1answer
831 views
Nginx Request header Or Cookie Too Large
I am trying to setup Nginx + Unicorn + Rails 3. Nginx will also serve some static and php projects. However when I open the site I always see a
400 Bad Request
Request Header Or Cookie Too Large
...
3
votes
2answers
543 views
Monitoring bundle exec unicorn_rails with bluepill
Due to unicorn_rails complaining about different gem versions we moved to running bundle exec unicorn_rails... in our bluepill files. This change solved that particular problem and things start and ...
3
votes
1answer
965 views
How to preserve request url with nginx proxy_pass
I was trying to use Thin app server and had one issue.
When nginx proxies the request to Thin (or Unicorn) using proxy_pass http://my_app_upstream; the application receives the modified URL sent by ...
3
votes
1answer
688 views
unicorn nginx upstream server not starting
My unicorn server was running fine, but has stopped working and I can't figure out how to get it restarted.
2011/04/18 15:23:42 [error] 11907#0: *4 connect() to unix:/tmp/sockets/unicorn.sock failed ...
3
votes
2answers
1k views
bundler incorrectly trying to install “development” and “test” group gems in production
I have a small web app, which uses a bunch of gems. Some of them are only used for test and development environments. Now, when I try to start unicorn on the production server using the following ...
3
votes
1answer
678 views
NGINX, Unicorn, Mediatemple dv server
Anyone every try to set up nginx & unicorn for their rails apps on a mediatemple dv server? Did you document it?
2
votes
3answers
112 views
What is the difference between Nginx and Unicorn?
I would like to know the difference between Nginx and Unicorn. As far as I understand, Nginx is a webserver while Unicorn is a Ruby HTTP server.
Since both Nginx and Unicorn can handle HTTP requests, ...
2
votes
1answer
400 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
132 views
HTTP streaming in rails not working when using Rack::Deflater
I've setup unicorn in rails 3.1 and http streaming works until I enable Rack::Deflater.
I've tried both with and without use Rack::Chunked. In curl I can see my response while in chrome I get the ...
2
votes
2answers
224 views
Could not find unicorn (>= 0) amongst
I'm currently using capistrano to deploy my project. However I'm having this problem below:
$ cap deploy:start
* executing `deploy:start'
* executing " ...
2
votes
0answers
187 views
Weird error when I start my rails app with unicorn
I'm getting this very strange error when I attempt to start my rails application with unicorn. Has anyone seen this before?
[root@Web01 mp_app]# unicorn_rails -c config/unicorn.rb -E production -D -d
...
2
votes
1answer
414 views
Heroku RACK_ENV says “development” on Thin, but “staging” on Unicorn
I came across this behavior and was wondering if anyone else had seen it. I have a workaround so it's not a show-stopper.
I created a new app on Heroku with a Cedar stack. When demonstrating ...
2
votes
1answer
300 views
Unicorn completely ignores USR2 signal
I'm experiencing a rather strange problem with unicorn on my production server.
Although the config file states preload_app true, sending USR2 to the master process does not generate any response, and ...
2
votes
1answer
528 views
What's wrong with my rackup file?
When i attempt to start my unicorn server I've got the next stack trace:
Can't understand what's wrong with rackup file? Why it is not readable?
sites@bck:~/fatfreecrm$ ...
2
votes
1answer
3k views
unicorn, capistrano install
I have the following deploy.rb
# RVM bootstrap
# $:.unshift(File.expand_path("/home/tim/.rvm/lib"))
$:.unshift(File.expand_path('./lib', ENV['rvm_path']))
require 'rvm/capistrano'
set ...
2
votes
3answers
2k views
Restart Unicorn with a USR2 - quitting old master
So sending USR2 to Unicorn is awesome -- it starts up a new master with a new copy of your code and automatically picks up any changes. Sweet. My question is: how do I stop the old master? The ...
2
votes
1answer
211 views
Configuring W3C's Unicorn to use a proxy server
I've been trying to setup W3C Unicorn on Ubuntu 10 using Tomcat6 but running into a few problems with proxy servers.
I've got Unicorn configured (via tomcat) to use a proxy server using java's ...
2
votes
1answer
248 views
Reset cache in Thin instances launched by Unicorn
I have a Ruby webapp that caches some frequently used information in a lightweight layer, but there are times at which I want to reset the cache without restarting the entire process.
Before I ...
1
vote
0answers
28 views
Unicorn+rails3.1+nginx fill the memory
I've read that Ruby doesn't return the memory to OS, it is okay. But how does it fill 512 mb of RAM? There is quite simple rails application with even one worker (i had to cut others to reduce the ...
1
vote
1answer
111 views
Unicorn + NGINX: cannot start unicorn
I just started playing around with Unicorn and NGINX set up (any full-blown reference would be appreciated. I have been crawling through google for three days and compile what I have to get my server ...
1
vote
1answer
111 views
Unicorn unable to write pid file
I am using deploying a Ruby on Rails app to a Linode VPS using Capistrano. I am using Unicorn as the application server and Nginx as the proxy. My problem is that I am not able to start Unicorn ...
1
vote
1answer
93 views
Which framework/server should I use (Ruby)
I am making a web app that will process large files (1gb+). While the files are being uploaded, I need to be able to access the file data (whatever is uploaded so far), and also possibly change the ...
1
vote
0answers
72 views
serving static files , apache+ unicorn
I am using rails 3.0.7 and I have apache2 + unicorn installed in the production environment.
I have my .conffile as follows
<VirtualHost *:80>
ServerName something.com
# Point this to your ...
1
vote
1answer
81 views
Why would nginx+unicorn return 504 Timeout on exception (instead of stack trace)?
In certain scenarios, when there is an error in code (usually a misnamed variable in a partial, but it could be something else as well), I get 504 Timeout from nginx instead of expected stack trace ...
1
vote
1answer
174 views
Unicorn! and PostgreSQL
I am in the middle of upgrading an old Rails and PostgreSQL app from 2.1 to Rails 3 (via a successful intermediate 2.3.11 step).
Finally, when I got all the Rspecs running smoothly, I installed ...
1
vote
1answer
173 views
Rails redirect fails on nginx & unicorn setup
I have set up my up to run on nginx and unicorn as described in Railscasts episode #293.
When I try to redirect, such as
class PostsController < ApplicationController
def show
redirect_to ...
1
vote
0answers
58 views
Segmentation Fault on Unicorn With Rails 3.1
I'm running into a segmentation fault on unicorn with rails 3.1 when i try to start the app, using unicorn_rails or rails console here's the backtrace. Can anyone help? Thanks!
1
vote
2answers
55 views
How to detect if a rails app is running under Unicorn?
I need to setup a connection to an external service in my Rails app. I do this in an initializer. The problem is that the service library uses threaded delivery (which I need, because I can't have ...
1
vote
1answer
59 views
Re-source .bashrc when restarting unicorn?
I have some ENV variables that are sourced for the deploy user. (Similar to what Heroku recommends, but without using Heroku.)
My rails app depends on these for certain functions, for example, in ...
1
vote
1answer
107 views
Rails 3.1: Is it possible to run UNICORN sever on windows?
Just wanted to know is it possible to use unicorn as dev web server on MS Windows machine?
Thanks!
1
vote
0answers
355 views
Mac OS X + Rails 3.1 + Unicorn + HTTPS
Here is my setup:
Mac OS X 10.6
Ruby 1.8.7
Rails 3.1
I have a Rails 3.1 application that starts with Unicorn every time this machine starts up (via a .plist in /Library/LaunchDaemons). The .plist ...
1
vote
1answer
84 views
What does Unicorn consider to be “fast” and “slow” requests?
Unicorn says it's for "fast clients". Whenever I read elaboration on this, this is explained as it being appropriate for, say, being behind an nginx proxy server serving http requests, and not for ...
1
vote
1answer
688 views
HTTP Streaming on Heroku with Rails 3.1 & Unicorn
Inspired by the RailsCast on HTTP Streaming, I've decided to turn it on on my server. However, the listen 3000 :tcp_nopush => false line that Ryan suggests adding to my unicorn.rb doesn't play well ...
1
vote
1answer
394 views
Unicorn Rails - Takes 100% CPU while starting in production mode
We are using Unicorn_Rails + nginx.
It works well in development mode and production mode in my system ( 4GB Ram , Intel(R) Core(TM)2 Duo CPU P8600 @ 2.40GHz)
i am able to start 10 workers in ...
1
vote
1answer
577 views
Unicorn Crash Loop
I'm trying to setup Unicorn with Nginx on my Ubuntu 11.04 machine. I compiled Ruby from the source, (previously tried RVM but had numerous problems with that) and now after installing unicorn (as well ...
1
vote
3answers
863 views
Getting upload process via Nginx + Unicorn
I'm using Nginx to reverse proxy my Unicorn process for a Rails app that I have. I would like to be able to get a progress status (similar to apache-upload-progress-module) for file uploads. I tried ...