Running a standalone database instance
UI Bakery incorporates a MySQL database to manage crucial data such as applications, users, roles, among others, essential for its operation.
Step 1. Install MySQL
Step 2. Create database and user
CREATE DATABASE bakery;
CREATE USER 'bakery'@'host' IDENTIFIED BY 'password';
GRANT
SELECT, INSERT, UPDATE, DELETE, CREATE, DROP,
REFERENCES, INDEX, ALTER, LOCK TABLES, EXECUTE,
CREATE ROUTINE, ALTER ROUTINE
ON bakery.* TO 'bakery'@'host';Step 3. Update UI Bakery to use a new database
How to migrate data from the default db to a standalone
Step 0. Reduce the database size (Optional)
Step 1. Create the database dump
Step 2. Apply the dump to the standalone database
Last updated
Was this helpful?