This question has been flagged
2 Replies
5273 Views

I am trying to set up odoo as a system service.

Starting odoo manually works: ./odoo.py -c /etc/odoo/openerp-server.conf

But whenever I try "service odoo start" I get this error:

Starting odoo: start-stop-daemon: group 'odoo' not found

Avatar
Discard
Author Best Answer

Thank you.

This solved my problem:

sudo groupadd odoo
sudo usermod -a -G odoo odoo
Avatar
Discard
Best Answer

Check this answer

https://www.odoo.com/forum/help-1/question/running-as-user-root-is-a-security-risk-aborting-94345#answer_94347

If not solve it for you comment with more details about your service script to get it solve it

Avatar
Discard