Knowledgebase

Find configuration & troubleshooting guides

Hosting

Managing Databases

3 min read
Intermediate
Updated Jan 11, 2024
MySQL Database phpMyAdmin SQL

Create a database, assign a user with a strong password, then import schema:

  1. Open the control panel > Databases > New.
  2. Create user; assign privileges (least privilege recommended).
  3. Import using phpMyAdmin or CLI: mysql -u user -p dbname < dump.sql

Rotate credentials periodically and restrict remote access unless necessary.