Articles on: Rust Guides

How to Save and Configure Auto-Save your Rust Server

Rust Server Auto Save Configuration: A Step-by-Step Guide


Preserving game data is vital for a smooth Rust server experience. This article will guide you through configuring auto save intervals and manually saving your server to ensure your game data remains secure and current.

Understanding Rust Server Save Commands


Before diving into the configuration process, familiarize yourself with the following commands:

`server.saveinterva`l: Sets the auto save interval (in seconds). The default value is 600 seconds (10 minutes).
server.save: Forces the server to save at that moment.
server.savebackupcount: Determines the number of server save backups. The default value is 2.

Configuring Auto Save Intervals


To set up auto save intervals on your Rust server, follow these steps:

Log in to your Rust server as an admin or moderator (auth level 2 or 1).
Press F1 to open the in-game console.
Enter the command server.saveinterval <interval_in_seconds>, replacing <interval_in_seconds> with your desired auto save interval (e.g., server.saveinterval 900 for a 15-minute interval).

The server will now save automatically at the specified interval.

Forcing a Manual Save


If you need to save your Rust server immediately, follow these steps:

Log in to your Rust server as an admin or moderator (auth level 2 or 1).
Press F1 to open the in-game console.
Enter the command server.save.

Your Rust server will be saved at that moment.

Adjusting the Number of Save Backups


To configure the number of save backups your Rust server keeps, follow these steps:

Log in to your Rust server as an admin or moderator (auth level 2 or 1).
Press F1 to open the in-game console.
Enter the command server.savebackupcount <number_of_backups>, replacing <number_of_backups> with the desired number of backups (e.g., server.savebackupcount 3 for three backups).

The server will now maintain the specified number of save backups.

Conclusion


Properly configuring auto save settings and knowing how to force save your Rust server ensures your game data is securely stored and up-to-date. By following this comprehensive guide, you can effortlessly set up auto save intervals, manually save your server, and adjust the number of save backups for a seamless gaming experience.

Updated on: 10/04/2023

Was this article helpful?

Share your feedback

Cancel

Thank you!