← Back to Knowledgebase
Managing MySQL Databases
How to access phpMyAdmin and manage your database tables directly.
Accessing phpMyAdmin
- Log in to the RYN Host Panel.
- Go to the "Databases" tab.
- Click the "Eye" icon (or "Manage") next to your database.
- Click the "phpMyAdmin" button. This will open a new tab and log you in automatically.
Common Tasks
Exporting a Database (Backup)
- Select your database from the left sidebar.
- Click the "Export" tab at the top.
- Keep the format as SQL.
- Click "Go" (or "Export"). This will download a
.sql file to your computer.
Importing a Database
- Select your database from the left sidebar.
- Warning: Importing will overwrite existing tables with the same name.
- Click the "Import" tab at the top.
- Click "Choose File" and select your
.sql backup.
- Click "Go" (or "Import") at the bottom.
Deleting Data (Truncate/Drop)
- Drop: Deletes the table and all its data completely.
- Truncate: Deletes all data inside the table but keeps the empty table structure.
Be extremely careful with these operations. There is no "Undo" button in databases!