From 597a7bb391c678e7e12af9ae0e2e4167b08c7038 Mon Sep 17 00:00:00 2001 From: Joshua Taillon Date: Fri, 16 Nov 2018 09:20:08 -0500 Subject: [PATCH 1/2] Update setup.rst The provided `gunicorn` command did not work for me, failing with the following error: ``` ModuleNotFoundError: No module named '/home/paperless/paperless/src/paperless' ``` The solution was to provide only `paperless.wsgi` as the argument to `gunicorn`, and provide a flag for `--pythonpath`. After changing it to this, the server started up fine. --- docs/setup.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/setup.rst b/docs/setup.rst index bb8ac4018..e86fe9efe 100644 --- a/docs/setup.rst +++ b/docs/setup.rst @@ -366,7 +366,7 @@ The gunicorn server can be started with the command: .. code-block:: shell - $ /bin/gunicorn /src/paperless.wsgi -w 2 + $ /bin/gunicorn --pythonpath=/src paperless.wsgi -w 2 .. _setup-permanent-standard-systemd: @@ -423,7 +423,7 @@ after restarting your system: respawn limit 10 5 script - exec /bin/gunicorn /src/paperless.wsgi -w 2 + exec /bin/gunicorn --pythonpath=/src paperless.wsgi -w 2 end script Note that you'll need to replace ``/srv/paperless/src/manage.py`` with the From 63e2fbe0c946ec7ecd84c1c05b1cf88888707b0d Mon Sep 17 00:00:00 2001 From: Joshua Taillon Date: Fri, 16 Nov 2018 09:21:07 -0500 Subject: [PATCH 2/2] Update paperless-webserver.service Update `gunicorn` command to use `--pythonpath` --- scripts/paperless-webserver.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/paperless-webserver.service b/scripts/paperless-webserver.service index 6bc986cdd..771b8301f 100644 --- a/scripts/paperless-webserver.service +++ b/scripts/paperless-webserver.service @@ -4,7 +4,7 @@ Description=Paperless webserver [Service] User=paperless Group=paperless -ExecStart=/home/paperless/project/virtualenv/bin/gunicorn /home/paperless/project/src/paperless.wsgi -w 2 +ExecStart=/home/paperless/project/virtualenv/bin/gunicorn --pythonpath=/home/paperless/project/src paperless.wsgi -w 2 [Install] WantedBy=multi-user.target