Skip to content

MySQL Databases

import { Aside } from ‘@astrojs/starlight/components’;

Some EVLBOX game server plans (including Minecraft and TF2) include access to a MySQL database powered by MariaDB. You can create and manage your database directly from the Nitro Control Panel, and access it through our web-based database manager.



  1. Log in to the Nitro Control Panel and open your server.
  2. Click Databases in the left sidebar.
  3. If your plan includes a database allocation, click Create Database.
  4. Your database will be provisioned and you’ll be shown your:
    • Database name
    • Username
    • Password
    • Host / Port

Save these credentials somewhere safe — you’ll need them to connect plugins or applications to your database.


You can manage your database visually using our hosted Adminer instance at https://nitro-db.evlbox.com.

Adminer login page showing the MySQL/MariaDB login form with Server pre-filled as 127.0.0.1

To log in:

  1. Leave Server as 127.0.0.1
  2. Enter your Username, Password, and Database name from the Nitro Control Panel
  3. Click Login

Once logged in, you’ll see your database dashboard. A freshly created database will show “No tables.” — that’s expected.

Adminer database view showing an empty database with no tables

From here you can:

  • Run SQL queries via SQL command
  • Import a .sql file to restore or seed data
  • Export your database as a backup
  • Create and browse tables

EVLBOX takes once-daily off-site backups of all databases. If you need a database restored, open a support ticket and include your server name and the date you’d like restored to.

It’s also a good habit to export your own backups periodically via Adminer — especially before making major changes.


Use the credentials from your Nitro Control Panel when configuring a plugin or application. Most Minecraft plugins (LuckPerms, CoreProtect, etc.) have a config.yml where you paste these values directly.

FieldValue
HostUse the host from your Nitro panel
Port3306
Database(shown in Nitro panel)
Username(shown in Nitro panel)
Password(shown in Nitro panel)