Home Game Panel 🛢️Importing MySQL Databases Through the Panel

🛢️Importing MySQL Databases Through the Panel

Last updated on Oct 12, 2025

You can easily import an existing MySQL database into your server using our Panel.
This allows you to move plugin data, player stats, and other important information from your previous host without manual setup.


🔹 Importing a Remote Database

  1. Log in to the Panel.

  2. Create a new database under the Databases section of your server.

  3. Once created, click the Import button.

  4. In the import prompt, fill in the remote database connection details from your old host:

    • Host

    • Port

    • Username

    • Password

    • Database name

⚠️ Note: Database imports are limited to 5 GB in size.
If your database is larger, please compress and import it manually via SQL dump.


📥 Importing a .SQL Database Dump via File Manager

If you already have a .sql file (database backup), you can import it directly using the File Manager.

  1. Head to database section in your respective server

  2. Create a new database if you do not have one created

  3. Select the database you want your .sql to be imported into

  4. UNCHECK the Remote Import popup

  5. Click on Import Local SQL into Database


🧩 Example Plugin Configurations using MySQL

Here are examples of how to connect your Minecraft plugins to your MySQL database once imported:

LuckPerms

storage-method: MySQL
data:
  address: your-mysql-host:3306
  database: your_database_name
  username: your_username
  password: your_password

LiteBans

sql:
  driver: MySQL
  address: your-mysql-host:3306
  database: 'your_database_name'
  username: 'your_username'
  password: 'your_password'

CoreProtect

use-mysql: true
table-prefix: co_
mysql-host: your-mysql-host
mysql-port: 3306
mysql-database: your_database_name
mysql-username: your_username
mysql-password: your_password

Plan

Database:
  Type: MySQL
  MySQL:
    Host: your-mysql-host
    Port: 3306
    User: your_username
    Password: your_password
    Database: your_database_name
    Launch_options: "?rewriteBatchedStatements=true&useSSL=false&serverTimezone=UTC"

AdvancedBan

UseMySQL: true
MySQL:
  IP: your-mysql-host
  DB-Name: your_database_name
  Username: your_username
  Password: your_password
  Port: 3306
  Properties: 'verifyServerCertificate=false&useSSL=false&useUnicode=true&characterEncoding=utf8'

That’s it!
You’ve successfully imported your MySQL database and configured your plugins to use it.
If you encounter any connection issues, ensure your credentials and host IP are correct, and that your database is accessible from your server.

Please contact us if you face any difficulty.