diff --git a/docs/setup.rst b/docs/setup.rst index e18d11dda..4ffed6f43 100644 --- a/docs/setup.rst +++ b/docs/setup.rst @@ -300,13 +300,18 @@ Standard (Bare Metal, Systemd) If you're running on a bare metal system that's using Systemd, you can use the service unit files in the ``scripts`` directory to set this up. You'll need to create a user called ``paperless`` and setup Paperless to be in a place that -this new user can read and write to. Then, you can just tell Systemd to enable -the two ``.service`` files:: +this new user can read and write to. Be sure to edit the service scripts to point +to the proper location of your paperless install, referencing the appropriate Python +binary. For example: ``ExecStart=/path/to/python3 /path/to/paperless/src/manage.py document_consumer``. +If you don't want to make a new user, you can change the ``Group`` and ``User`` variables +accordingly. + +Then, you can just tell Systemd as ``root`` (or using ``sudo``) to enable the two ``.service`` files:: # systemctl enable /path/to/paperless/scripts/paperless-consumer.service # systemctl enable /path/to/paperless/scripts/paperless-webserver.service - # systemctl start /path/to/paperless/scripts/paperless-consumer.service - # systemctl start /path/to/paperless/scripts/paperless-webserver.service + # systemctl start paperless-consumer + # systemctl start paperless-webserver .. _setup-permanent-standard-ubuntu14: