Sponsored Content
Full Discussion: Central Backup Server
Special Forums Hardware Filesystems, Disks and Memory Central Backup Server Post 302314026 by choogendyk on Thursday 7th of May 2009 08:34:14 AM
Old 05-07-2009
If you have several servers and want a central backup server, especially with the variety of things you have like MySQL, I personally would choose Amanda. You may want to use ZRM for MySQL (Zmanda Recovery Manager) to manage the dumps from MySQL to disk, and then use Amanda to take care of general backups, including those dumps. You can do it to disk or to tape. While you can also do it to Amazon S3, bandwidth to that would limit how much you could backup, and it would also have a cost associated with it.

Check out

Minimalist SysAdmin Blog Archive Ten Things I Like about Amanda

MySQL Backup: Zmanda Recovery Manager for MySQL

Amanda Open Source Backup

Main Page - The Open Source Backup Wiki (Amanda, MySQL Backup, BackupPC)

Both ZRM and Amanda are open source, but you can also get support contracts from Zmanda if that is the sort of thing you want.
 

9 More Discussions You Might Find Interesting

1. Red Hat

OS backup of a Redhat 5 server.

Hi, I am looking for a way to take the full backup of a redhat linux 5 server. I am familiar with ignite ux for HP-UX and flarcreate in Solaris. Looking for something for redhat Tx (3 Replies)
Discussion started by: uxadmin007
3 Replies

2. Solaris

Server Backup

Hi, As per my understanding in sun ufsdump and snap are 2 methods of backup of file system. what is inode table backup? or can we take only inode table backup? Regards Manu (1 Reply)
Discussion started by: manoj.solaris
1 Replies

3. Shell Programming and Scripting

rsync backup mode(--backup) Are there any options to remove backup folders on successful deployment?

Hi Everyone, we are running rsync with --backup mode, Are there any rsync options to remove backup folders on successful deployment? Thanks in adv. (0 Replies)
Discussion started by: MVEERA
0 Replies

4. Solaris

Help to setup Central server for Solaris10.

Hi Experts, In our env, we have around 100 more solaris 8,9,10 servers, we quaterly apply patches & emergency fixes, for this we take prior OS Ufsdump bkp, In order to reduce the efforts to go DC & load each time the tapes on all servers & take the ufsdump backup, we planned to set up a... (2 Replies)
Discussion started by: fizan
2 Replies

5. HP-UX

NTP Backup Server HP-Ux

Hi Can Anyone guide me in how to setup NTP backup server? say if server_A fails then client should automatically adjust time using server_B. Currently my /etc/ntp.conf file is configured as following server= server_A peer=server_B Will this configuration solve my purpose? Need Urgent... (12 Replies)
Discussion started by: sai_2507
12 Replies

6. AIX

IBMR2 backup server

I am building a backup IBMR2 server with AIX 4.3 operating system. The application uses a TUXEDO front end. I am getting an authorization error when I try to bring the system up with tpchkauth error. I need to know how to find the value of this field so I can compare it to my production server. ... (3 Replies)
Discussion started by: lstribling
3 Replies

7. Red Hat

Central authentication server

Hi guys In the firm we are running Windows and Linux server. Currently all servers are using the same usernames and password and from my opinion is we are running bad and non secure practice. I was looking some documentation and I think best solution is to use SAMBA/LDAP/Kerberos to act as... (5 Replies)
Discussion started by: solaris_user
5 Replies

8. Solaris

Configuring central logging server for network devices

Hi I am very well aware of configuring central logging (syslog)server on solaris to capture logs of other solaris servers. But don't know how to capture the logs of network devices like Juniper , cisco etc on solaris server. Is this possible through syslog server of solaris. Is there any way we... (1 Reply)
Discussion started by: amity
1 Replies

9. Shell Programming and Scripting

Server Backup Script

im looking for a shell script for linux that backups up a specific folder/folders + the whole SQL db, archives into a password encrypted gpg file and uploads to google drive using API every 6 hours (via cron) does a script like this exist? ---------- Post updated at 12:55 PM ----------... (3 Replies)
Discussion started by: galapagos8000
3 Replies
BACKUP_DBVERIFY(8)					       AFS Command Reference						BACKUP_DBVERIFY(8)

NAME
       backup_dbverify - Checks the integrity of the Backup Database

SYNOPSIS
       backup dbverify [-detail] [-localauth]
	   [-cell <cell name>]
	   [-help]

       backup db [-d] [-l] [-c <cell name>] [-h]

DESCRIPTION
       The backup dbverify command checks the integrity of the Backup Database. The command's output indicates whether the Backup Database is
       damaged (data is corrupted) or not. If the Backup Database is undamaged, it is safe to continue using it. If it is corrupted, discontinue
       any backup operations until it is repaired.

CAUTIONS
       While this command runs, no other backup operation can access the Backup Database; the other commands do not run until this command
       completes. Avoid issuing this command when other backup operations are likely to run. The backup savedb command repairs some types of
       corruption.

OPTIONS
       -detail
	   Reports the number of orphaned blocks found, any inconsistencies, and the name of the server machine running the Backup Server that is
	   checking its copy of the database.

       -localauth
	   Constructs a server ticket using a key from the local /etc/openafs/server/KeyFile file. The backup command interpreter presents it to
	   the Backup Server, Volume Server and VL Server during mutual authentication. Do not combine this flag with the -cell argument. For more
	   details, see backup(8).

       -cell <cell name>
	   Names the cell in which to run the command. Do not combine this argument with the -localauth flag. For more details, see backup(8).

       -help
	   Prints the online help for this command. All other valid options are ignored.

OUTPUT
       The command displays one of the following two messages:

       Database OK
	   The database is undamaged and can be used.

       Database not OK
	   The database is damaged. You can use the backup savedb command to repair many kinds of corruption as it creates a backup copy.  For
	   more detailed instructions, see the OpenAFS Administration Guide chapter about performing backup operations.

       The -detail flag provides additional information:

       o   The number of orphan blocks found. These are ranges of memory that the Backup Server preallocated in the database but cannot use.
	   Orphan blocks do not interfere with database access, but do waste disk space. To free the unusable space, dump the database to tape by
	   using the backup savedb command, and then restore it by using the backup restoredb command.

       o   Any inconsistencies in the database, such as invalid hostnames for Tape Coordinator machines.

       o   The name of the database server machine on which the Backup Database was checked, designated as the "Database checker". For a detailed
	   trace of the verification operation, see the /var/log/openafs/BackupLog file on the indicated machine. You can use the bos getlog
	   command to display it.

EXAMPLES
       The following command confirms that the Backup Database is undamaged:

	  % backup dbverify
	  Database OK

       The following command confirms that the Backup Database is undamaged and that it has no orphan blocks or invalid Tape Coordinator entries.
       The Backup Server running on the machine "db1.abc.com" checked its copy of the Database.

	  % backup dbverify -detail
	  Database OK
	  Orphan blocks 0
	  Database checker was db1.abc.com

PRIVILEGE REQUIRED
       The issuer must be listed in the /etc/openafs/server/UserList file on every machine where the Backup Server is running, or must be logged
       onto a server machine as the local superuser "root" if the -localauth flag is included.

SEE ALSO
       BackupLog(5), backup(8), backup_restoredb(8), backup_savedb(8), bos_getlog(8)

COPYRIGHT
       IBM Corporation 2000. <http://www.ibm.com/> All Rights Reserved.

       This documentation is covered by the IBM Public License Version 1.0.  It was converted from HTML to POD by software written by Chas
       Williams and Russ Allbery, based on work by Alf Wachsmann and Elizabeth Cassell.

OpenAFS 							    2012-03-26							BACKUP_DBVERIFY(8)
All times are GMT -4. The time now is 05:04 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy