added centos/rhel installation on netbox.md postgresql.md and web-server.md

This commit is contained in:
Chagara
2016-09-02 16:38:58 -04:00
parent 8341800a85
commit 2213e3e0cf
3 changed files with 56 additions and 5 deletions

View File

@@ -4,13 +4,27 @@ NetBox requires a PostgreSQL database to store data. MySQL is not supported, as
The following packages are needed to install PostgreSQL with Python support:
Debian/Ubuntu
* postgresql
* libpq-dev
* python-psycopg2
Centos/RHEL
* postgresql
* postgresql-server
* postgresql-libs
* postgresql-devel
Debian/Ubuntu
```
# sudo apt-get install -y postgresql libpq-dev python-psycopg2
```
Centos/RHEL
```
# sudo yum install postgresql postgresql-server postgresql-libs postgresql-devel
```
# Configuration