Set Up MariaDB
Step 2b: Set Up MariaDB
MariaDB must be installed and configured before running the POS installer.
Install MariaDB:
- Install MariaDB 10.x or later
- Minimum 2 GB free disk space
- During install, set the root password
- Ensure MariaDB service is running
Create Database and User:
CREATE DATABASE enactorpos;
CREATE USER 'enactor'@'localhost'
IDENTIFIED BY 'enactor';
GRANT ALL PRIVILEGES ON enactorpos.*
TO 'enactor'@'localhost';
FLUSH PRIVILEGES;
-- For Edge Server, use enactorpdp instead
-- For Store Server, use enactorbo instead
Tip: Username: enactor | Password: enactor | The DATABASE_USERNAME, PASSWORD, and SCHEMA in your .ini file must match what you create here.