Database Setup

The platform utilizes a MariaDB database for data storage and access. The deployment of the database is designed to be highly dynamic, allowing the platform to operate independently of the database's location. This flexibility ensures that the platform does not rely on the database running on the same server.

CREATE USER 'admin'@'127.0.0.1' IDENTIFIED BY 'your-password'; GRANT ALL PRIVILEGES ON *.* TO'admin'@'127.0.0.1' WITH GRANT OPTION; CREATE DATABASE rssp;

Note:

1) To ensure production database clustering run successfully.

2) To configure database setting

SET GLOBAL max_connections = 1500;

SHOW VARIABLES LIKE "max_connections";