It backs up its data on time
Easy howToRun.
Safe from ransomware.
SnapBackuper is a service which allows you to easily back up your data whether it is a single computer, small or large server.
For example, using a simple script, you will regularly upload (synchronize data) to the service SnapBackup and we will take care of the history of change.
This backup service works in such a way that you can no longer overwrite historical backups, so they are your data is protected for ransomware,
which are tools that encrypt and thus make all your data inaccessible. However, backup history is not directly available to your computer, so your data is ahead of you destructive viruses in safety.
The backup history can be maintained at all times from the beginning of the backup. Due to space optimization, only one backup is maintained for historical backups months.
If you have physical or virtual servers, you have a NAS or a computer with data then you need to back up. And if you are a small or medium business enjoy our services, keep regular backups from your data in safety. If you are a big company contact us asking for on-premise solution.
We provide a backup service where you can easily synchronize your data and backup history we will take care of you. The data is safe from hardware failure, user error, attack ransomware or targeted black-hacker attack. You keep your data safe and, thanks to that, your business, which is based on this data.
Availability of the deposit for 14 days possibly longer.
Regular daily advances, according to configuration even more often.
Archive backups - access to historical advances.
It ensures high availability of the service
RAID.
Backup frequency and maintenance time advances can be customized tailored to customer requirements.
Standard technology = simple connection and transition.
Each backup behaves as a full backup. This allows you to quickly restore backups or browse straight through.
Backup through secure
ssh
protocol.
The data is safe from user error, attacker or
ransomware.
Quickly find the required backup according to date.
Possibility of recovery without assistance - backup are accessible to an authorized user through another account.
Servers for Czech customers are located in the Czech Republic at Czech companies and thanks to that it is not a problem and the risk of having data with a company that falls under other laws and the power of another state.
We do not need access to your servers. All you have to do is set up only sending data to our backup service.
The price consists of a fixed monthly amount, which depends on the time of maintaining the deposit and the frequency of deposits. The long parameter is the size of the backed up data.
Confusion about backups. We will be happy to answer tips on how to configure backup. You can find detailed instructions on how to do this in the documentation or send us
Backup is performed through a secure channel (encrypted). After performing a server-side backup, the backup is already permanently saved and further backed up / deleted already does not endanger data.
The configuration of the SnapBackuper backup service is tailor-made for each customer. It is possible to combine the parameters as needed : backup frequency, backup time, maintenance archive backups (eg keeping monthly backups), the size of the backed up data.
Each admin can install the components, just install the standard common components for remote data copying. You do not have to give us access to your server. All Linux distributions, BSD, Mac OS and MS windows and more are supported.
You run the backup yourself. It is ideal to use a tool rsync, it is open source software, has open source code and is completely free. It is available for GNU / Linux, Mac OS, windows and more. This allows you to back up with it linux servers and desktops with MS Windows.
sudo apt-get -y install rsync
Choose what data you need to back up. Backup is easy and fast. You can initialize the backup and perform a regular backup with one command:
rsync -av -e "ssh -p $PORT -l $USER" --delete \ /home example.snapbackuper.com:~/backupdir \ --exclude temp --exclude Downloads
Listing all backups is easy, just log in to the backup system using a special account and list all files. Individual backups are represented as directories.
# ssh -p 3300 backuperadmin@example.snapbackuper.com # ls
You can restore data by simply copying data from a specific time version of the backup:
# scp -p 3300 -arf \ backuperadmin@example.snapbackuper.com:~/backupdir \ /home