CREATE DATABASE [myDatabaseName];

USE [myDatabaseName];

CREATE USER '[myDatabaseUserName]'@'localhost' IDENTIFIED BY '[myDatabaseUserPassword]';

GRANT USAGE ON [myDatabaseName].* to '[myDatabaseUserName]'@'localhost' IDENTIFIED BY '[myDatabaseUserPassword]';

GRANT ALL ON '[myDatabaseName]'.* to '[myDatabaseUserName]'@'localhost';
Create a MySQL Db Instance

If you want to create a database instance for n-gen CMS on your MySQL database server in order to be able to use the n-gen CMS installer you can use the SQL statements to the left...

Last updated 19-04-2026 11:19:55