RESOURCES HUB
Premium
📅
Joined
Jul 22, 2025
💬
Messages
200
👍
Thanks
1,427
🏆
Points
225
📍
Location
London
Today I will explain how to create a complete backup of your Metin2 server.
Whether you want to:
This tutorial will help you create a full backup of your serverfiles (game + MySQL).
Below I will show you the manual method.
Navigate to the folder where your "game" directory is located.
Example:
Note:
The location may be different for you.
Some servers have the game folder in /usr, /home, or another custom directory.
Run the following command:
Explanation:
Wait until the process finishes.
Then go to /usr/home in WinSCP and refresh.
You will see:
game_backup.tar.gz
This is your backup of the game folder.
Now we create a backup for MySQL.
Go to:
Then run:
After it finishes, you will see:
mysql_backup.tar.gz
This is your database backup.
After completing these steps, you will have:
These two files represent a full backup of your Metin2 server.
Whether you want to:
- Move the server to another VPS / PC
- Keep a backup for safety
- Protect your files before making changes
This tutorial will help you create a full backup of your serverfiles (game + MySQL).
Backup Serverfiles (game & mysql)
Below I will show you the manual method.
1) Manual Method
Step 1 – Connect to the Server
- Open Putty
- Connect to your server via SSH
Step 2 – Go to the Game Folder Location
Navigate to the folder where your "game" directory is located.
Example:
Code:
cd /usr/home
Note:
The location may be different for you.
Some servers have the game folder in /usr, /home, or another custom directory.
Step 3 – Create Game Backup
Run the following command:
Code:
tar -zcf game_backup.tar.gz game
Explanation:
- tar -zcf = archive command
- game_backup.tar.gz = name of the backup file (you can change it)
- game = folder that will be archived
Wait until the process finishes.
Then go to /usr/home in WinSCP and refresh.
You will see:
game_backup.tar.gz
This is your backup of the game folder.
4) Backup MySQL
Now we create a backup for MySQL.
Go to:
Code:
cd /var/db
Then run:
Code:
tar -zcf mysql_backup.tar.gz mysql
After it finishes, you will see:
mysql_backup.tar.gz
This is your database backup.
Final Result
After completing these steps, you will have:
- game_backup.tar.gz
- mysql_backup.tar.gz
These two files represent a full backup of your Metin2 server.





