Перейти до основного вмісту

PostgreSQL

Creating PostgreSQL

Image description

примітка

To begin, select a plan and provide a name, username, and password for your new PostgreSQL database.

Image description

інформація

Once a green indicator appears in the left sidebar next to the created database, open the modal window where you can configure the new database.

Image description

Connecting PostgreSQL to Node-RED

To use the PostgreSQL database in the Node-RED environment, you need to add nodes for working with it. Follow these steps:

  1. Open the Node-RED interface or editor.
  2. Click on the menu icon (represented by three horizontal lines) to expand the menu options.
  3. Select "Manage Palette" from the menu.
  4. In the Manage Palette window, click on the "Install" tab.
  5. Search for "node-red-contrib-re-postgres" in the search bar.
  6. Once you find the "node-red-contrib-re-postgres" package, click the "Install" button next to it.
  7. Wait for the installation process to complete.
  8. After the installation is finished, you can start using the PostgreSQL nodes in your Node-RED flows.

Image description

Image description

примітка

After that, we will have a node with the name postgres.

Image description

Move the postgres node to the workspace, double-click on the node twice, and edit it.

In the postgres node, you need to enter the information about the database you created.

Image description

Host: Enter the host address. Port: Leave it unchanged. Database: Enter the name of the database. Username: Enter the username. Password: Enter the password. Name: This is the configuration name, you can enter any desired name.

After filling in the information, click the Add button.

Choose the name of our configuration (as entered in the previous step). Select Receive query output, and you can fill in the Name field, which will be the name displayed for the node on the workspace.

Image description

Click "Deploy" to save the node settings.

Image description