diff --git a/docs/installation/4-http-daemon.md b/docs/installation/4-http-daemon.md index 065c63b12..7e19a6b69 100644 --- a/docs/installation/4-http-daemon.md +++ b/docs/installation/4-http-daemon.md @@ -125,10 +125,8 @@ Then, start the `netbox` and `netbox-rq` services and enable them to initiate at ```no-highlight # systemctl daemon-reload -# systemctl start netbox.service -# systemctl start netbox-rq.service -# systemctl enable netbox.service -# systemctl enable netbox-rq.service +# systemctl start netbox netbox-rq +# systemctl enable netbox netbox-rq ``` You can use the command `systemctl status netbox` to verify that the WSGI service is running: diff --git a/docs/installation/migrating-to-systemd.md b/docs/installation/migrating-to-systemd.md index ff9e6cf0c..34ce70bb6 100644 --- a/docs/installation/migrating-to-systemd.md +++ b/docs/installation/migrating-to-systemd.md @@ -26,10 +26,8 @@ Then, start the `netbox` and `netbox-rq` services and enable them to initiate at ```no-highlight # systemctl daemon-reload -# systemctl start netbox.service -# systemctl start netbox-rq.service -# systemctl enable netbox.service -# systemctl enable netbox-rq.service +# systemctl start netbox netbox-rq +# systemctl enable netbox netbox-rq ``` You can use the command `systemctl status netbox` to verify that the WSGI service is running: diff --git a/docs/installation/upgrading.md b/docs/installation/upgrading.md index c7d9977cc..b4f19a87d 100644 --- a/docs/installation/upgrading.md +++ b/docs/installation/upgrading.md @@ -88,8 +88,7 @@ This script: Finally, restart the gunicorn and RQ services: ```no-highlight -# sudo systemctl restart netbox -# sudo systemctl restart netbox-rq +# sudo systemctl restart netbox netbox-rq ``` !!! note