Databases
How to create, manage, and connect to MySQL databases for your server.
Some game servers and plugins need a MySQL database to store data. You can create and manage databases directly from the panel.
Creating a Database
- Go to the Databases tab on your server
- Click New Database
- Enter a name for your database
- Choose the connection source (leave as
%to allow connections from anywhere, or restrict to specific IPs) - Click Create Database
📝 Note: Your plan determines how many databases you can create. If you've reached your limit, delete an unused database or upgrade your plan.
Viewing Connection Details
Click on a database in the list to view its connection details:
| Field | Description |
|---|---|
| Host | The database server address |
| Port | The connection port (usually 3306) |
| Database | The database name |
| Username | Your database username |
| Password | Your database password |
Use these details to configure your plugins or mods that require a database connection.
💡 Tip: Most Minecraft plugins that need a database will have a
config.ymlwith fields for host, port, database, username, and password. Copy the values from the panel directly into that config.
Rotating a Password
If you need a new database password:
- Click the Rotate Password button next to your database
- The panel generates a new random password
- Update your server configs with the new password
⚠️ Warning: Rotating the password immediately invalidates the old one. Any plugins using the old password will lose their database connection until you update them.
Deleting a Database
- Click the Delete button next to the database
- Type the database name to confirm
- Click Confirm
Deleting a database permanently removes all data stored in it. This cannot be undone.
Related Pages
How is this guide?