Simplify the systemctl commands

This commit is contained in:
Jeremy Stretch 2020-02-26 14:38:25 -05:00
parent 798ecfc8f0
commit be9df3c07d
3 changed files with 5 additions and 10 deletions

View File

@ -125,10 +125,8 @@ Then, start the `netbox` and `netbox-rq` services and enable them to initiate at
```no-highlight ```no-highlight
# systemctl daemon-reload # systemctl daemon-reload
# systemctl start netbox.service # systemctl start netbox netbox-rq
# systemctl start netbox-rq.service # systemctl enable netbox netbox-rq
# systemctl enable netbox.service
# systemctl enable netbox-rq.service
``` ```
You can use the command `systemctl status netbox` to verify that the WSGI service is running: You can use the command `systemctl status netbox` to verify that the WSGI service is running:

View File

@ -26,10 +26,8 @@ Then, start the `netbox` and `netbox-rq` services and enable them to initiate at
```no-highlight ```no-highlight
# systemctl daemon-reload # systemctl daemon-reload
# systemctl start netbox.service # systemctl start netbox netbox-rq
# systemctl start netbox-rq.service # systemctl enable netbox netbox-rq
# systemctl enable netbox.service
# systemctl enable netbox-rq.service
``` ```
You can use the command `systemctl status netbox` to verify that the WSGI service is running: You can use the command `systemctl status netbox` to verify that the WSGI service is running:

View File

@ -88,8 +88,7 @@ This script:
Finally, restart the gunicorn and RQ services: Finally, restart the gunicorn and RQ services:
```no-highlight ```no-highlight
# sudo systemctl restart netbox # sudo systemctl restart netbox netbox-rq
# sudo systemctl restart netbox-rq
``` ```
!!! note !!! note