Fresh Netbox & PostgreSQL installation #6556
-
I'm brand new to Netbox installation/configuration so I apologise for DFU questions... I want to new installation from scratch of the latest version of Netbox. However, I want to install the Netbox on ServerX with the PostgreSQL installed and running on ServerY. Both servers are running Ubuntu 18.04. I've taken a look through the documentation and watched the installation video and it all seems fine but I've got a couple of questions if I may:
Thanks for any advice... |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes; this is fairly common.
The PosgtreSQL server must be configured to accept and authenticate remote connections. Although not covered by the NetBox documentation, this is easy to do and detailed in the PostgreSQL documentation.
Redis, like PostgreSQL, may be installed either locally or on a remote host. (If installed on a remote host, is must also be configured appropriate to accept remote connections.) Gunicorn is what runs the Python worker processes; these run on the NetBox server.
Generally, yes, but you'll need to first understand why Apache2 is already running. E.g. is it serving a different application that might conflict with NetBox?
The Apache2 documentation details how to serve multiple virtual servers; there's nothing special about NetBox in this regard. You can find a minimal Apache2 config example here. Hope that helps! |
Beta Was this translation helpful? Give feedback.
Yes; this is fairly common.
The PosgtreSQL server must be configured to accept and authenticate remote connections. Although not covered by the NetBox documentation, this is easy to do and detailed in the PostgreSQL documentation.
Redis, like PostgreSQL, may be installed either locally or on a remote host. (If installed …