Databases
Some plugins and mods require a MySQL database to store data. The game panel makes it easy to create and manage databases.Accessing Databases
- Select your server from the dashboard
- Click Databases in the left sidebar
Creating a Database
- Click New Database
- Enter a database name
- Set the Connections From field:
%for connections from anywherelocalhostfor local connections only
- Click Create Database
Database Credentials
After creation, you’ll see:| Field | Description |
|---|---|
| Database | The database name |
| Username | Login username |
| Password | Click to reveal |
| Host | Database server address |
| Port | Connection port (usually 3306) |
Connecting to Your Database
From Plugins/Mods
Use the provided credentials in your plugin configuration:External Management Tools
You can connect with tools like:- phpMyAdmin (web-based)
- MySQL Workbench (desktop)
- HeidiSQL (Windows)
- DBeaver (cross-platform)
Some tools may require the Connections From to be set to
% to allow external access.Managing Databases
Viewing Database Size
Database storage usage is shown in the panel.Rotating Password
- Click on the database
- Click Rotate Password
- Update your plugin configurations with the new password
Deleting a Database
- Click the delete icon next to the database
- Confirm deletion
Common Use Cases
Databases are commonly used by:- Economy plugins (EssentialsX, Vault)
- Permissions plugins (LuckPerms)
- Chat plugins
- Analytics and statistics plugins
- Web integrations (Dynmap, forums)
Database Limits
Your server plan includes a certain number of databases. Check your plan details for limits.Troubleshooting
Connection Refused
- Verify host and port are correct
- Check Connections From setting
- Ensure database server is online
Access Denied
- Verify username and password
- Check database name is correct
- Ensure user has proper permissions
Database Not Found
- Confirm database name matches exactly
- Database may have been deleted
