Postgres initdb command for RHEL6

This commit is contained in:
Adam Beames 2017-05-11 19:51:29 +10:00
parent 0f97478b55
commit 571d32dbe0

View File

@ -13,6 +13,11 @@ NetBox requires a PostgreSQL database to store data. (Please note that MySQL is
```no-highlight
# yum install -y postgresql postgresql-server postgresql-devel
CentOS/RHEL6
# service postgresql initdb
CentOS/RHEL7
# postgresql-setup initdb
```