A unicorn is a magical weaponized HTTP server for Ruby.

learn more… | top users | synonyms

0
votes
0answers
3 views

Rails 3.2 Nginx Unicorn Basic Authentification

I am trying to get Basic Authentification to work with Rails 3.2 nginx and Unicorn The configuration works for hosting my site. I used the Rails Basic Authentification in the Controller but i have to ...
0
votes
0answers
10 views

Why are unicorn creating multiple master processes on startup in production mode?

Okay so im trying to setup a production serven with unicorn. When i try to start the unicorn server thru the script i have written it starts up 2 master instance. This only happens when i start it ...
0
votes
0answers
16 views

Debuggin Rails application in production mode without rebooting system

I am working on a very complex system which has a setup that goes like this. 1. Master Web Server Running a rails application which is actually 5 different rails application installed using chef. ...
0
votes
1answer
24 views

ERROR — : reaped #<Process::Status: pid 4335 exit 1> worker=0

I am trying since 2 days to deploy on my vps (Ubuntu 12.04 Server (64 bits)) using : ruby (1.9.3-rc1), rails, capistrano, nginx and unicorn. I also follow railscast tutorial from Ryan Bates showing ...
1
vote
1answer
12 views

Unicorn and omniauth-facebook - uninitialized constant OmniAuth

So I am trying to get omniauth-facebook to work in my production env. It works fine locally on my machine using POW. My prod env is ubuntu with nginx/unicorn and code is Rails 3.2.13, the errors ...
0
votes
0answers
18 views

Javascript Error on Sinatra with NGINX with Unicorn

I have made a site that runs on NGINX with Unicorn Web Server, and Sinatra. I created the site locally, and everything worked great. However, after uploading, the countdown on the home page is not ...
0
votes
2answers
27 views

Unicorn cannot find gem on production

I just installed a new gem on my rails application. Everything works fine on the dev machine. Once I deploy the application to my production server, I get an Uninitialized constant in my unicorn.log ...
0
votes
0answers
14 views

Rabl initializer error after deploying to production

After deployiny my rails application to my production server using capistrano, I ran into an issue with my Rabl initializer file: Uninitialized constant Rabl However, I can access the Rabl object ...
0
votes
0answers
34 views

rack http header field changed in the response

I am using unicorn with sinatra and my server must send back a response to the client application with a specific custom http header, let's say 'my-header'. However the client always receives ...
3
votes
1answer
58 views

I have 8 CPU cores and 8 unicorn workers — why aren't requests being handled concurrently?

It's my understanding that the incoming requests should be processed concurrently by default, when I have as many workers as I do cores. Why am I seeing requests only handled synchronously? Here's ...
0
votes
0answers
12 views

higher payload with multiple unicorn worker resulting in MulitJSON::LoadError

The problem I am facing is weird. whenever there is one unicorn process with single worker I don't get any kind of MultiJSON::LoadError but whenever there are many unicorn workers I get ...
1
vote
0answers
63 views

Unicorn method missing generated_attribute_methods

I have a application that uses rails + unicorn + nginx and capistrano for deployment. It was all working fine, until yesterday when i ran a bundle update. suddenly the unicorn server cant start ...
0
votes
0answers
15 views

Setting up Capistrano to deploy to Azure Ubuntu VM

I am following this guide, and I am at the step where I attempt to do cap deploy:cold. I get the following error: ** [out :: vm.cloudapp.net] env: /etc/init.d/unicorn_app ** [out :: ...
0
votes
0answers
17 views

Serving two Rails application (which reside in different servers) from one Nginx Server

I am new to Nginx and i have following scenarios: 1. I have two staging servers, Where staging1 has one Rails application & Nginx Installed. 2. Staging2 has another rails application & Nginx ...
0
votes
1answer
27 views

Deploying rails app on separate app server and database server (both Linode)

I'm having trouble deploying a basic rails app (which works on local machine, which works on heroku) to a distributed architecture (web server on one box, database server on another). Here is my ...
1
vote
0answers
17 views

Nginx, unicorn and multiple rails apps in subrirectories

I'm messing around with aws, and want to deploy multiple apps to my free tier aws account. I'd like to have nginx point to "ec-2-site.com/first-app" and "ec-2-site.com/second-app. Here are my ...
0
votes
0answers
52 views

Haproxy + Nginx + Unicorn - Not serving static assets with SSL

I was trying to make my Rails website serve all the web-pages and assets with both, http or https, but what happens is that when I enter in https mode it is being redirected to http and the assets are ...
0
votes
1answer
39 views

Using Rails 3, Unicorn & Nginx, How do I get access to the host for a subdomain

My rails app toggles functionality based on the subdomain e.g. blah1.mysite.com & blah2.mysite.com I want to access the subdomain in my rails controller by using request.host but the host is ...
0
votes
0answers
19 views

How does God's flapping condition work?

I'm trying to configure God's flapping condition to avoid infinite restarts if a problem happens, but I can't seem to make it work. It's never detecting the flapping state. That's my God ...
0
votes
0answers
32 views

resque-web with rack 1.4.5 (unicorn + nginx)

Recently installed resque-web on Debian 6 (with ruby 1.8) using sudo gem install resque sudo gem install unicorn Everything works fine until I restart the server (which is also running Redmine + ...
1
vote
1answer
41 views

Unicorn fails to start on Vagrant box due to Errno::EPERM

When I run the following command to start Unicorn for a Sinatra app on my Vagrant box(ubuntu-12.04.2-server-i386) sudo unicorn -c unicorn.rb -E development -D -l 0.0.0.0:8080 I get the following ...
0
votes
1answer
124 views

Heroku Europe: hung requests in Unicorn workers

I have an app on Heroku that I forked to try out the Europe region support. After some initial hurdles (Heroku Europe region: "Application error" when trying to fork) this seems to be ...
1
vote
3answers
51 views

Why do I need to precompile Rails assets on app servers and not web servers only?

I'm deploying a simple Rails app to this small ubuntu precise64 server setup : * 1 web server running nginx * 2 app servers running unicorn * 1 db server running postgresql My servers are ...
0
votes
1answer
44 views

monit does not find the unicorn worker in production server

I'm using this gem for deploy kapify. This is my unicorn config: unicorn config unicorn.rb.erb unicorn_init.erb I have in my deploy: server "111.111.111.111", :web, :app, :db, primary: true set ...
0
votes
0answers
79 views

Ruby on Rails/Redis/Unicorn configuration

I've been noticing intermittent timeouts in my app (heroku, ruby on rails, unicorn, redis, etc). After some debugging I've found the timeouts are from the following redis connection error: ...
0
votes
0answers
28 views

Dragonfly not working in production

I am using Dragonfly with Nginx, unicorn and mini_magick. I am using mem_cache_store in production. Image upload and display works fine in development environment. But on production it fails with ...
1
vote
1answer
49 views

Unicorn gets stuck in loop “Refreshing Gem list”

While starting up, Unicorn will get stuck in a loop of INFO -- : Refreshing Gem list INFO -- : Refreshing Gem list INFO -- : Refreshing Gem list No error message will show up.
3
votes
3answers
43 views

Avoiding to hardcode server configuration

I'm working on a Rails application, and I'm about to open-source it. I'm deploying it to a VPS server, configured with nginx and unicorn, following this RailsCast. In order to get Capistrano, Nginx ...
0
votes
0answers
16 views

Unicorn logging level

I'm using Unicorn v4.6.2 to serve a Rack (non-Rails) application, and I'd like to set its log level to something like ERROR -- to have the logfile containing only failed requests. Is there a way to do ...
0
votes
0answers
26 views

Unicorn can't start

I have installed unicorn (Ubuntu 10.4) and wanted to run my rails app via unicorn. it throws me this error: master failed to start, check stderr log for details I don't know why it can't start. ...
0
votes
1answer
90 views

During cap deploy:cold - command not found for /etc/init.d/unicorn

I'm very close to having my first rails app live up on Linode VPS, but keep on getting a strange error message near the end of cap deploy:cold. I've been following railscasts 335 to deploy my Rails ...
0
votes
1answer
66 views

Omniauth Nginx Unicorn callback to wrong host URL

I've deployed a Rails app to a VPS server, and I'm using the Nginx/Unicorn combo, everything works fine, except that for some reason beyond my understanding, the Omniauth callbacks redirect wrong, ...
0
votes
1answer
72 views

Heroku zero-downtime deployment with Unicorn

I was wondering if it's possible to have a zero-downtime deployment strategy with Heroku. I find with the current Heroku docs, that upon pushing an app, it takes about 1 minute to reload the app, ...
0
votes
1answer
78 views

Random unicorn timeouts and flapping

I'm running a pretty high-traffic Rails 3.2 app on Unicorn and Nginx (multiple web nodes), but every once in a while I will see Unicorn workers start timing out and getting sigkilled by the Unicorn ...
1
vote
1answer
73 views

Unicorn can't find bundler using capistrano

I can't seem to get bundler to work with unicorn on deploy. I am using capistrano to deploy. Looking at the unicorn log while deploying, I get the following errors: ...
0
votes
1answer
135 views

Asset pipeline not working in rails production environment

I'm having an issue deploying to a VPS using Rails. My app works fine in the development environment, but when I push to production using Capistrano, I run into issues. I am using unicorn, rails ...
0
votes
2answers
94 views

RoR - nginx issue when trying to deploy with unicorn

I'm beginner in Ruby on Rails and have some difficulties to deploy my rails application (with nginx + unicorn). I don't know what's going on, but here is the kind of errors I get in log files when I ...
0
votes
0answers
44 views

How would I set up multiple rails app instances on one dev server with separate subdomain names?

So I have a dev server under the name dev.xxx.org on my institutions internal network. And I have a staging server under staging.xxx.org on my institutions network. We have multiple devs and wanted to ...
1
vote
1answer
59 views

Initializing OmniAuth with unicorn

I have a rails 3 app which uses OminAuth. I'm initializing It with the file "config/initializers/omniauth.rb": Rails.application.config.middleware.use OmniAuth::Builder do provider :facebook, ...
0
votes
1answer
83 views

Would it be performant to use nginx with apache with unicorn for rails or would that be slow?

For an application I'm helping architect we wanted to use nginx + unicorn as part of our server stack. We've heard good things about the speed at which nginx can serve static files. Unfortunately part ...
2
votes
2answers
127 views

Newrelic via Heroku doesn't receive data from Ruby instance running in Unicorn although preload_app=true

I'm running a ruby app with grape (no rails) on heroku and am using the new relic addon. The app is forked with unicorn. As described here, I integrated this option to my configs. Here's my setup: ...
3
votes
1answer
220 views

How can I use unicorn as “rails s”?

A new rails project's gemfile shows: # Use unicorn as the app server gem 'unicorn' rails s --help shows: Usage: rails server [mongrel, thin, etc] [options] Yet, doing: rails s unicorn I get: ...
1
vote
0answers
74 views

capistrano error with unicorn & devise

I am trying to deploy using capistrano and unicorn. Unfortunately, I'm getting the We're sorry, but something went wrong. message. On my development environment everything works. The ...
0
votes
2answers
117 views

start unicorn app server when the ubuntu server starts

I am running my rails application using ruby enterprise edition with unicorn as app server. I run this command bundle exec unicorn -D -c /home/ubuntu/apps/st/config/unicorn.rb I need to run this ...
0
votes
1answer
68 views

What “workers” really are?

I feel lost. Nginx has it's own "Worker" processes, Unicorn has it's own "Worker" settings, Resque has it's own "Workers". Unicorn's settings should be related to Nginx's or Resque's I guess? I ...
0
votes
0answers
21 views

Can Unicorn Listen to a File Descriptor?

Can the Unicorn Rack server listen to an existing file descriptor? If not, are there any Rack servers that can? For example, I have a parent process that opens port 80 as file descriptor 3 then forks ...
1
vote
1answer
183 views

Unicorn + Capistrano zero-downtime deploy — Not switching to new release

The app deploys fine if I want to tolerate downtime from manually stopping and starting unicorn after a deployment. However, I want to use the zero-downtime unicorn settings, but it isn't working ...
0
votes
1answer
87 views

Ruby in Rails, production. Content doesn't updates on pages, but updates after press F5

I've nginx and unicorn on VPS as production environment. And when I add any model instance (article, post - anything) by a form of site, and click on an any link, that assigned page must shows this ...
0
votes
0answers
50 views

unicorn/kgio LoadError in vagrant

I'm working through the railscasts tutorial on unicorn and nginx (http://railscasts.com/episodes/293-nginx-unicorn), using a lucid32 box in vagrant. My OS is Mountain Lion. I'm using rbenv and ruby ...
1
vote
0answers
106 views

Can't activate rack-1.4.0

I try run an application on sinatra with Unicorn... This is the stack. andres@andres-desktop:~/testkreattiewe$ unicorn I, [2013-03-28T14:31:14.052748 #7080] INFO -- : listening on addr=0.0.0.0:8080 ...

1 2 3 4 5 9