javakoenig
javakoenig

Reputation: 33

ps -ax shows me a "rack" process. Is this normal?

I run a webpage using the Ruby web-framework Sinatra on my Ubuntu server. Today I looked to my processes and found these two lines:

30129 ?        S      0:00 Passenger ApplicationSpawner: /var/www/bla.com                                                    
30139 ?        S      0:00 Rack: /var/www/bla.com

I never noticed these before. Are these normal, or should I be concerned?

Upvotes: 0

Views: 668

Answers (3)

rizidoro
rizidoro

Reputation: 13418

Yes, it's normal. Passenger is your webserver, and Rack is the middleware between your server and Sinatra framework.

Upvotes: 0

Dan D.
Dan D.

Reputation: 74655

From what I could find, Rack is used by Sinatra:

Sinatra rides on Rack, a minimal standard interface for Ruby web frameworks.

from http://www.sinatrarb.com/intro

Upvotes: 1

darioo
darioo

Reputation: 47183

It should be normal. Check out what Rack is. Killing that process could risk your webpage functionality, so don't do it.

Upvotes: 1

Related Questions