backup
Last updated
Last updated
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.
Standard: ./gameserver backup
Short: ./gameserver b
Alter these three settings by editing .
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.
Set the maximum age of a backup using maxbackupdays
. Any backups older than X days will be removed after a successful backup.
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.
By default backups are saved in the backup
directory.
Use ./gameserver details
to view information about created backups.
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.
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 is a very useful bash wrapper to help automate duplicity.
Automated backups can be set using . It is recommended that frequently you backup and your retention policy to prevent your server is carefully considered to prevent storage issues.
see
You can change this using the and the property backupdir
.
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.
is similar to rsync however can easily sync to cloud storage solutions.