Jump to content

Recommended Posts

Posted (edited)

Hi

 

Our MIS system is capita SIMS I would like to backup my SIMS Database to a external HDD.

In the event of ransomware attack i can restore the sims database.

 

Please post me which all the files I need to backup for SIMS database.

 

 

Thanks

Edited by genesis
Posted (edited)

Evening.

 

You are going to want to backup the following directories:

adsoft

DOCSTORAGE

 

Then you are going to want to transfer logons to the database and then backup the database, bellow is an example of a powershell command to achieve the goal but you will need to amend it to your configuration.

 

Import-Module SQLPS -DisableNameChecking

Invoke-Sqlcmd -ServerInstance sims\sims2019 -Username "sa" -Password SAPASSWORD -Query "exec sims.sims.db_p_transfer_login"

Start-Sleep -s 30

cmd.exe /c "C:\Program Files\Microsoft SQL Server\MSSQL12.SIMS2019\MSSQL\Binn\DbAttach.exe" /BACKUP /AUTO /SERVER=sims/sims2019 /DATABASE=SIMS /USER=sa /PASSWORD=SAPASSWORD /PATH=d:\SIMS.BAK

 

 

You will need to edit all the underlined sections.

 

Also if you have a good internet connection it would be a better option to upload an encrypted version of the backup to cloud storage Duplicati is a good free backup option which can do encrypted cloud incremental backups.

Edited by jmcdermott
  • Like 1
Posted

Usually we'd run it on a VM and then backup the entire VM daily, both on prem and in a Backblaze B2 container.

 

Has saved a lot of hassle in the past as instead of reinstalling SIMS on a new server and restoring the backups we can just restore the whole machine.

Posted
Hi

 

Our MIS system is capita SIMS I would like to backup my SIMS Database to a external HDD.

In the event of ransomware attack i can restore the sims database.

 

Please post me which all the files I need to backup for SIMS database.

 

 

Thanks

 

A ransomware attack will probably encrypt all the attached disks so this won’t help you. You should be doing full backups of the server *and* SQL backups of the database to a proper backup device that isn’t attached/writeable directly from the server.

Posted
Backing up the VM is a must but in most ransom attacks it is possible the the backups can also be effected also.

 

That's why we do Backblaze - Immutable backups.

Posted
Sorry aicrd no offence ment, agree with you totally, just reassuring local backup only is not a good idea.

 

None taken at all :)

 

But yes, ideally you'd want a local + cloud and if you cant do immutable then an offline backup method (Such as tape) will save you from ransomware.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...