MySQL Databases
import { Aside } from ‘@astrojs/starlight/components’;
MySQL Databases
Section titled “MySQL Databases”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.
Creating a Database
Section titled “Creating a Database”- Log in to the Nitro Control Panel and open your server.
- Click Databases in the left sidebar.
- If your plan includes a database allocation, click Create Database.
- 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.
Accessing Your Database (Adminer)
Section titled “Accessing Your Database (Adminer)”You can manage your database visually using our hosted Adminer instance at https://nitro-db.evlbox.com.

To log in:
- Leave Server as
127.0.0.1 - Enter your Username, Password, and Database name from the Nitro Control Panel
- Click Login
Once logged in, you’ll see your database dashboard. A freshly created database will show “No tables.” — that’s expected.

From here you can:
- Run SQL queries via SQL command
- Import a
.sqlfile to restore or seed data - Export your database as a backup
- Create and browse tables
Backups
Section titled “Backups”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.
Connecting a Plugin or Application
Section titled “Connecting a Plugin or Application”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.
| Field | Value |
|---|---|
| Host | Use the host from your Nitro panel |
| Port | 3306 |
| Database | (shown in Nitro panel) |
| Username | (shown in Nitro panel) |
| Password | (shown in Nitro panel) |