Problem My server doesn't have any backup solutions,

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

NuBSMcGee

New Member
Jul 29, 2019
46
0
0
My FTB Monster server doesn't have any automated backup solutions, I was hoping some of you experienced guys would point me to some of the better solutions that are out there?
 

sedilis

New Member
Jul 29, 2019
34
0
0
With Windows I have not found a reliable way of shutting down the server before taking a copy of the world folder so I have taken to copying it while the server is running. I'm not sure if that can cause a problem with locked files but on the few occasions I've had to do a world restore those backups have worked fine.

I've got six scheduled tasks set up to run at three hour intervals throughout the day to xcopy it to another drive. The tasks run a bat file with the following xcopy command

xcopy "C:\Monster\World" "D:\Monster Backup\Auto\1200" /e/v/i/q/k/y

Each of the six bat files uses a different folder in D:\Monster Backup\Auto\ (\0000... \0300... ect) so they don't overwrite each other until the same time the following day; giving me six rollback points in each day.

For added safety I do take manual backups from time to time when I can shut down the server and keep those on a google docs folder for some cloud backup.
 

olicool11

New Member
Jul 29, 2019
7
0
0
As far as i'm aware there should be no issues running backups whilst the server is running, provided that you also have it disable automated saving whilst it backs up, in my case the map file for the server I run is close to 38gb, and as such backups can take a while!

also THANK YOU WAGON, that is exactly what i have been looking for!
 
  • Like
Reactions: Wagon153

Connor Gavitt

New Member
Jul 29, 2019
1,091
-1
0
With Windows I have not found a reliable way of shutting down the server before taking a copy of the world folder so I have taken to copying it while the server is running.
What do you mean you don't have a way to shut down your server? /stop will save everything and shut it down or as long as the server doesn't save during a backup you can do it while it's running just fine.
 

sedilis

New Member
Jul 29, 2019
34
0
0
What do you mean you don't have a way to shut down your server? /stop will save everything and shut it down or as long as the server doesn't save during a backup you can do it while it's running just fine.

I mean I've not found a way of piping the /stop command to the server automatically when running backups. Obviously I know you can type that in manually :)