P
P
partisan422018-12-24 08:17:04
ubuntu
partisan42, 2018-12-24 08:17:04

Is there a tool for centralized backup management?

Good day. I'm looking for a solution for my problem, maybe someone has experience in solving a similar problem?
Separately, I note that I do not ask you to do everything for me, but simply ask you to poke your nose.
There are a dozen windows servers that are currently backed up with Cobian Backup.
This creates some difficulties, since you have to go through all the servers daily and manually check whether all backups have been made, whether they are correct, and so on.
Ideally, I would like a solution that would meet the following requirements
1) A centralized control body that is deployed under a nix-like OS, (ideally CentOS or Ubuntu).
2) The presence of a web interface for managing or at least monitoring processes.
3) The ability to make backups on the same PC from which the data is taken (to another physical disk)
4) Ideally, the ability to attach zabbix to this to monitor backups and notify about any problems.
5) Availability of an agent under Windows.
So far, I've found only two solutions, these are Bacula and Bareos, but so far I'm not sure that they meet the 3rd point of my Wishlist.
I would be very grateful if you share your experience.

Answer the question

In order to leave comments, you need to log in

5 answer(s)
V
vanoc, 2018-12-25
@partisan42

Bareos is essentially the same bacula, only it can do a little more.
There is a Bat utility for monitoring. Available for both Linux and Windows.
To backup to the same machine, make it also as storage, add it to the director and specify in the task to backup to it. But I agree with the comments above. Backing up to the same machine is not a good idea.

D
Dmitry, 2018-12-24
@Tabletko

Cobian has a mail notification setting, as well as remote cobian service management (though in its infancy). If you are not well versed in Linux, then you can try Bareos. If you do not want to understand - there are commercial backup systems.
ps: you should not make backups on the same machine.

S
Sergey Ryzhkin, 2018-12-24
@Franciz

If you have money then Veeam

P
pfg21, 2018-12-24
@pfg21

a backup on the same machine is not a backup.
I have the same cobian uploading all backups via ftp (none of the viruses can ftp, unlike smb :) ) to one file server from an old computer with a big screw.
a script is written there that, at each login, shows the antiquity of each backup.

/etc/profile.d/Z95_backup.sh
#!/bin/bash
#cfg
basedir="/srv3b/backup_base"
### second of today
today_s=$(date +%s)
echo -e 'day ------BACKUP'
# /srv3b/backup_base/userdir/backdir/file
# BASEDIR USERDIR BACKDIR
# /srv3b/backup_base \serafimov_nn\desktop\1test.txt
for userdir in $(ls $basedir)
do
# мы внутри юзерпапки
for backdir in $(ls $basedir/$userdir)
do
# если данный файл не директория то пропустить
if [ ! -d $basedir/$userdir/$backdir ]
then
# echo $basedir/$userdir/$backdir not a dir
continue
fi
#внутри папки с бекапами
file=$( ls -t $basedir/$userdir/$backdir | head -n 1)
file_s=$(date -r "$basedir/$userdir/$backdir/$file" +%s)
dif_day=$(( ($today_s - $file_s)/86400 ))
## echo -e "$dif_day\t$userdir $backdir"
if (( $dif_day > 3 ))
then
if (( $dif_day > 8 ))
then
##### BIG DAY
echo -e "\e[42;30m$dif_day\e[0m\t$userdir $backdir"
else
echo -e "$dif_day\t$userdir $backdir"
fi
fi
done
#userdir end
done
#end

draw a script that will view backups and swear if they are old or do not pass the unpacking test.

C
CityCat4, 2018-12-24
@CityCat4

A backup on the same computer is about the same as the Chinese "product number two" - it's good only if you follow the instructions :)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question