Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

thin install - systemD support #184

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

thin install - systemD support #184

wants to merge 1 commit into from

Conversation

strelec
Copy link

@strelec strelec commented Jul 4, 2013

As discussed on google groups, many modern linux systems have migrated from old SystemVinit to SystemD, which makes our install script outdated

This is the commit that autodetects which one of them is in use and make the change appropriately.

p.s.: I have tried to conform to the existing coding style.

@pier-oliviert
Copy link

Are you your service is working fine? I tried your service file and it didn't work. I'm currently investigating.

@macournoyer
Copy link
Owner

@pothibo did you get it working? If you got a working config, I'll integrate it into Thin.

@pier-oliviert
Copy link

Sorry I forgot about it. The issue with systemd and ruby is that there are tools like rvm, rbenv and such that handles ruby version. This is what was going on with my system.

I'm not sure what the best approach would be. Maybe you can give me some idea?

Right now, here's the service I'm using.

[Unit]
Description=lamarmite.ca Thin instance
After=syslog.target network.target

[Service]
Type=simple
User=marmite
Group=http
Environment="PATH=/usr/local/share/npm/bin:/opt/rubies/ruby-2.0.0-p247/bin:$PATH"
WorkingDirectory=/home/marmite/
ExecStart=/home/marmite/.gem/ruby/2.0.0/bin/thin start --ssl -R /srv/http/marmite.ca/config.ru -e production

[Install]
WantedBy=multi-user.target

@pirj
Copy link

pirj commented Dec 3, 2013

I would prefer starting thin in userspace, e.g. systemctl enable --user thin-marmite. This will allow running several thin servers on a single machine under different users, and there's no chance a security flaw in Rails or whatever will allow it taking the control over all the machine or even get to other app's data.

@pier-oliviert
Copy link

@pirj it was my understanding that setting a user & group would run the service as the specified user/group.

@pirj
Copy link

pirj commented Dec 4, 2013

@pothibo Makes sense

@pirj
Copy link

pirj commented Dec 4, 2013

I suggest file format strongly depends on how gems are bundled and is rvm installed.
I don't see any need in rvm in production, and install gems in the following way:

gem install bundler
PATH=$PATH:/home/app/.gem/ruby/2.0.0/bin
bundle install --path ~/.gem

The following webapp.service works fine (start, stop, restart):

[Unit]
Description=Web application server
After=network.target

[Service]
Type=forking
User=app
PIDFile=/home/app/webapp.pid
ExecStart=/home/app/.gem/ruby/2.0.0/bin/thin -d --user app -e production --chdir /home/app/app --socket /home/app/webapp.sock --pid /home/app/webapp.pid --log /home/app/log/webapp.log start
ExecReload=/bin/kill -HUP $MAINPID
ExecStop=/bin/kill -QUIT $MAINPID

[Install]
WantedBy=multi-user.target

If I set Type=simple, it just doesn't start.

Should it listen to unix socket or port by default? Can we do both? Or is it a good idea to insist on socket usage?
What to do with people passionate about rvm on production? No idea here.

@pier-oliviert
Copy link

Honestly, I have no idea, I meant to submit a PR here for a long time, but there's two things that are bothering me.

ExecStart needs to include absolute path.
User/Group should be set to the user/group your web service runs on

Maybe it should try to find the correct paths and ask for the user for a confirmation?
And then ask the user for user/group?

I guess @macournoyer would be better positionned to answer those questions though.

@danny8376
Copy link

@pothibo If you're using with rvm, rather than handling with 'thin install', you should follow this guide - http://rvm.io/deployment .

@AndreaGiardini
Copy link

FYI this systemd service works perfectly for me:

[Unit]
Description=A fast and very simple Ruby web server
After=syslog.target network.target

[Service]
Type=forking
User=www-data
Group=www-data
ExecStart=/usr/local/bin/thin start --all /etc/thin/
ExecReload=/user/local/bin/thin restart --all /etc/thin/
ExecStop=/usr/local/bin/thin stop --all /etc/thin
TimeoutSec=300

[Install]
WantedBy=multi-user.target

@daniel-lenz
Copy link

hi, any news about this?

@ioquatix
Copy link
Collaborator

ioquatix commented Sep 7, 2020

Can you please rebase this on master.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants