The Broker requires a PostgreSQL database. The schema is automatically created when the Broker application starts up.
With psql or a database management tool
-- Create a dedicated user (use a strong password) CREATE USER your_database_user WITH ENCRYPTED PASSWORD 'your_secure_password'; -- Create the database CREATE DATABASE broker OWNER your_database_user; -- Grant privileges GRANT ALL PRIVILEGES ON DATABASE broker TO your_database_user;