Kruiger Labs
Client Portal Get Started
DocumentationScarlett
Sign inGet support
Scarlett

Scarlett Database

Create the database, import install.sql, configure utf8mb4, and verify the connection.

View Scarlett Product

Create and import#

Your database provider supplies five separate values: hostname, port, database name, username, and password. The database host is not your website URL. If remote access is restricted, allow the bot host's outbound IP in the provider firewall or access list.

  1. Create a MySQL or MariaDB database.
  2. Create a dedicated database username and password and grant it access.
  3. Find the database hostname in the provider panel.
  4. Open phpMyAdmin, select the database, and import install.sql.
  5. Enter the credentials in Scarlett’s SQL configuration and restart.

SQL settings#

SettingWhat to enterWhat it controls
charsetutf8mb4Full Unicode storage, including Discord names and symbols. Leave unchanged unless you understand the consequences.
hostYOUR_DATABASE_HOSTDatabase network hostname.
userYOUR_DATABASE_USERDedicated database login.
passwordYOUR_DATABASE_PASSWORDPrivate database password.
databaseYOUR_DATABASE_NAMEDatabase containing the imported tables.

Verify the connection#

Expected console message
Connected to the database successfully

If it fails, compare each value separately and confirm remote access or firewall rules permit the bot host.

Back to top