skip to Main Content

Is the database used by netbox PostgreSQL?

Our virtual machine base information is stored inside netbox. We need Java to go to netbox to create VM information and to get VM information. But this does not guarantee transactivity. So we want to use Java to connect to netbox’s database for transactional operations.

Our virtual machine base information is stored inside netbox. We need Java to go to netbox to create VM information and to get VM information. But this does not guarantee transactivity. So we want to use Java to connect to netbox’s database for transactional operations.

2

Answers


  1. Yes netbox uses PostgreSQL as a Database

    Login or Signup to reply.
  2. While it’s entirely possible to directly interact with the database directly your better approach will likely be interacting through the API. It’s quite robust and easy to interact with (as far as APIs go).

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search