Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/installation/1-postgresql.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ This section entails the installation and configuration of a local PostgreSQL da
Once PostgreSQL has been installed, start the service and enable it to run at boot:

```no-highlight
sudo systemctl start postgresql
sudo systemctl enable postgresql
sudo systemctl enable --now postgresql
```

Before continuing, verify that you have installed PostgreSQL 12 or later:
Expand Down
3 changes: 1 addition & 2 deletions docs/installation/2-redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@

```no-highlight
sudo yum install -y redis
sudo systemctl start redis
sudo systemctl enable redis
sudo systemctl enable --now redis
```

Before continuing, verify that your installed version of Redis is at least v4.0:
Expand Down
3 changes: 1 addition & 2 deletions docs/installation/4-gunicorn.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ sudo systemctl daemon-reload
Then, start the `netbox` and `netbox-rq` services and enable them to initiate at boot time:

```no-highlight
sudo systemctl start netbox netbox-rq
sudo systemctl enable netbox netbox-rq
sudo systemctl enable --now netbox netbox-rq
```

You can use the command `systemctl status netbox` to verify that the WSGI service is running:
Expand Down