backup
The backup
command allows the creation of .tar.gz
archives of a game server. This can be used to transfer a game server to another Linux server, to backup the game server before a risky change, to save the current state of the game server.
Each time a backup runs the whole game server will be backed up, this can take up significant storage space. Consider a backup policy to prevent your Linux server from running out of storage.
Commands
Standard: ./gameserver backup
Short: ./gameserver b
Example Output
Backup Settings
Alter these three settings by editing LinuxGSM config.
maxbackups
Set the maximum number of backups with maxbackups
. If the number of backups exceeds this value, the oldest backup will be removed after a successful backup.
Setting the value to 0 will prevent any backups from being saved, including the one just created.
maxbackupdays
Set the maximum age of a backup using maxbackupdays
. Any backups older than X days will be removed after a successful backup.
Setting the value to 0 will retain the backup for 24 hours.
stoponbackup
Set if the server should be stopped for a backup using stoponbackup
. If the server is running it will be stopped while the backup is running and started again once complete. This is useful to prevent any file changes during compression that could result in a corrupt or failed backup.
Automated Backups
Automated backups can be set using cronjobs. It is recommended that frequently you backup and your retention policy to prevent your server is carefully considered to prevent storage issues.
cronjob example
see cronjobs
Backups Location
By default backups are saved in the backup
directory.
You can change this using the configuration file and the property backupdir
.
Checking Backups
Use ./gameserver details
to view information about created backups.
Alternative Backup Methods
Using the backup feature is not the only way to backup a game server. There are other methods that have more features are are more powerful than the basic LinuxGSM backup feature. Below are are few applications that can be used instead of, or with LinuxGSM backups.
rsync
rsync is one of the most common ways to backup. It is a remote sync tool that is created for sending files/directory's to another location. Particularly good for syncing to another server.
Duplicity
Is an incremental backup solution that allows backups to all sorts of different locations including many different cloud storage solutions like BackBlaze B2 and Amazon S3. Once configured it can be a powerful and efficient backup solution.
duplicity-backup.sh
duplicity-backup.sh is a very useful bash wrapper to help automate duplicity.
rclone
rclone is similar to rsync however can easily sync to cloud storage solutions.
Last updated