Amanda in 15 Minutes

Size: px
Start display at page:

Download "Amanda in 15 Minutes"

Transcription

1 Amanda in 15 Minutes Abstract Amanda is the most popular open source backup and recovery software in the world because of its openness, robustness, functionality and scalability. Yet it is very easy to set up and maintain in production. This article illustrates how, in about 15 minutes, you can: Install and configure an Amanda backup server. Prepare three different client machines (SLES 11, Fedora 13, and Windows XP) for backup. Set backup parameters. Verify the configuration. Verify backup and restore. Revision: 1.4

2 Table of Contents 1 The Problem The Challenge The Solution: Amanda Installation Prerequisites Installing the Amanda Backup Server Installing the Amanda Clients Installing Amanda Client RPM on Iron (Fedora 13) Installing Amanda Client RPM on Copper (SLES 11) Installing Amanda Client on Uranium (Windows XP) Configuring the Backup Server Configuring the Server Adding Client Iron (Fedora 13) Adding Client Copper (SLES 11) Adding Client Uranium (Windows XP) Verification and Backup Recovery Recovery of Linux client (Copper) Recovery of ZWC client (Uranium) Conclusion Request for Feedback Glossary...18 Page 2 of 18

3 1 The Problem Today's businesses rarely run on just one operating system. Linux users and administrators often have strong preferences for one distribution over another, web designers might lean towards the Mac, and legacy software and hardware may require various UNIX operating systems. Yet, despite the complexity of modern business computing environments, a system administrator is expected to find a reliable backup solution. Many enterprises expect users to keep important files on networked resources, both for sharing and to back them up. Others expect to back up desktop machines and laptops. With the price of hard disk storage continuously falling, today it is common to have terabytes of storage and corresponding amounts of data that can be lost 1. Furthermore, we live in a global and e- commerce economy, where businesses run around the clock and crucial business data is constantly changing. In this environment, it is more critical than ever to have a reliable backup system in place. 2 The Challenge For our 15-minute challenge, we want to backup two Linux systems (each running a different Linux distribution), and one Windows XP system. We use only freely available open source software. Our scenario is as follows: The user Sunil works with sensitive information. We need to make a backup of his home directory, /home/sunil, which resides on a Linux system called Iron, running Fedora 13. Our webmaster needs to backup the /srv/www/htdocs/ directory on the webserver, Copper, running SUSE Linux Enterprise Server 11 (SLES 11). Our manager works solely on a Windows XP system called Uranium, and keeps all of his work in a folder called C:\Data. Here is a summary of our configuration: Client Filesystem OS Compression? Copper /srv/www/htdocs/ SLES 11 Yes Iron /home/sunil Fedora 13 Yes Uranium C:\Data Windows XP Yes The Compression? column refers to whether that client should compress the data rather than the server (or even the tape drive). 3 The Solution: Amanda Amanda is open-source backup software that is flexible, secure and scalable in dynamic computing environments. Amanda can save you from expensive proprietary backup software and from those custom backup scripts that don t scale and have a propensity to break at the worst times. Dating back to 1991, Amanda has been used successfully in environments from one 1 "Data expands to fill the space available for storage" is a special case of Parkinson's Law which dates back decades. Page 3 of 18

4 standalone machine to hundreds of clients. Amanda is so thoroughly documented, from community wikis to published system administration texts, that it might be hard to discern just how easy an Amanda backup can be. This article will show you how, in about 15 minutes, you can: 1. Install and configure the Amanda backup server. 2. Install and configure the three different clients for backup. 3. Set backup parameters. 4. Verify the configuration. 5. Perform a backup. 6. Recover some files from a backup. We will install and configure Amanda backup server software on a machine running Red Hat Enterprise Linux 5 named Quartz. The Amanda Server software manages the backup data, the backup schedule, and stores the backups on media. We will install and configure Amanda backup client software on Copper and on Iron. The Windows XP client, Uranium, will be backed up using Zmanda Windows Client Community Edition (ZWC). Illustration 1: Backup Schematic It is good practice to back up critical portions of the backup server as well as clients. We don't show a backup on the server. It is just another Linux client to Amanda. Adding a suitable backup on Quartz will be left as an exercise. Compression is available on amanda servers and clients. You may specify the compression tool on Unix clients and servers. The Zmanda Windows Client uses ZIP compression, which is compatible with pkzip, winzip and other classic Windows archival tools. Client side compression offers two advantages: Page 4 of 18

5 Less data to send over the network, so faster backups. Because of Amanda's parallelism, you don't have the backup server compressing several dumps simultaneously, which relieves the backup server considerably. On the other hand, compression on the client may use up resources (CPU and memory) on the client. Depending on the relative resources of the client and server, it may be optimal to compress on the server rather than the client. 3.1 Installation Prerequisites There are two components to Amanda, the client and the server. Install one, the other or both as required. The basic Amanda setup consists of an Amanda server, the Amanda clients to be backed up, and the storage media on which the backup data will be stored, such as tape or hard disk. We can also use an intermediate storage area called a holding disk for caching the data. A holding disk provides these key benefits: It allows data to be streamed to media at full speed, preventing tape buffer under-runs and shoe-shining of tapes. It can act as a hedge against media failure. Data is first backed-up to the holding disk, and then later spooled to media when it is available. It gives you dump parallelism. With a holding disk, Amanda can do more at the same time, speeding things up. It can build several dumps simultaneously on the holding disk while copying one to tape. Changing a tape doesn't mean stopping the backups. It is a good practice to include a holding disk as a part of even a minimal setup. You may want to take a look at the Introduction to Amanda. This will give you some understanding of the advantages of using Amanda, the community around Amanda, and the resources available to you. Before we begin, please note the following prerequisites. Their installation, configuration and use are beyond the scope of this article. 1. tar 1.15 or later and xinetd are required for Unix clients, so they must be installed on Quartz, Iron and Copper. 2. Quartz will send out reports of each backup run, so it must be able to send mail to the root user. Any mail transport agent (MTA) will do. 3. The systems should all be on the same network and available. 4. We will need general root access as well as remote root access through SSH to UNIX and Linux clients. Ensure that SSH is enabled, passed through the firewalls, and working. We will use configuration commands over SSH later. 5. Deal with firewall issues. Clients must allow TCP ports through inclusive from the backup server through their firewalls 6. Directories to be backed up must exist. Page 5 of 18

6 You can get free Amanda binary and source RPM packages, and source tarballs from You can get the binary of Zmanda Windows Client (ZWC) Community Edition for free from Your Linux distribution repositories may have amanda packages, but those may not be the most recent and may not contain some of the utility scripts we show here. We recommend the most recent version, so we will install those. Download as follows: 1. The Amanda backup server RPM package onto Quartz. 2. The Amanda client RPM onto Iron and Copper. On Iron, if there is no RPM for Fedora 13, get that for The ZWC client onto Uranium. Also note that this article assumes a fresh install of Amanda. If you have an existing Amanda installation, additional steps are needed to ensure the proper upgrade to the latest Amanda release (3.1.0 and later). While this article shows using Amanda 3.1.0, we recommend the latest versions 1. The latest version of the Windows client may not agree exactly with the Linux server. Usually clients will work just fine with an Amanda server version of similar version number. For additional details about ZWC client installation please refer to the Amanda Wiki. The messages on your screen will be similar to what we show below. To conserve paper and bandwidth, we have omitted a lot of the installation output. Note: You can install Amanda on a host that had a previous installation of Amanda. In that event, you will see messages indicating that the user amandabackup already exists and that you should check certain properties. This is generally not a problem. 4 Installing the Amanda Backup Server 1. Log in as root on Quartz, the Red Hat Enterprise Linux 5 server. 2. Install the Amanda backup server RPM. As a part of the installation a user named amandabackup is created who belongs to the group disk. We use yum to check for and install dependencies. [root@quartz ~]# yum --nogpgcheck install amanda-backup_server rhel5.i386.rpm Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * addons: updates.interworx.info * base: mirrors.adams.net * extras: mirrors.adams.net * updates: mirrors.easynews.com Setting up Install Process Examining amanda-backup_server rhel5.i386.rpm: amandabackup_server rhel5.i386 1 As of this writing, the latest is Page 6 of 18

7 Need enterprise level support for Amanda? Upgrade to Amanda Enterprise Edition: Jun :15:23: === Amanda backup server installation complete. === Amanda installation log can be found in '/var/log/amanda/install.log' and errors (if any) in '/var/log/amanda/install.err'. Installed: amanda-backup_server.i386 0: rhel5 Complete! ~]# 3. As root set a password for user amandabackup on Quartz [root@quartz]# passwd amandabackup Changing password for user amandabackup. New UNIX password: Retype new UNIX password: passwd: all authentication tokens updated successfully. 4. Later, you may wish to back up Quartz or to recover files on Quartz. In fact later on we will recover some data on Quartz. To recover on a Linux client, you must first specify the tape device on the server to use. In each Linux clients we change the file /etc/amanda/amanda-client.conf. Change this line: tapedev "tape:/dev/your-tape-device-here" # your tape device to this: tapedev "file://data/amanda/vtape/dailyset1" # your tape device 5 Installing the Amanda Clients 5.1 Installing Amanda Client RPM on Iron (Fedora 13) 1. Log in as root on Iron. 2. Install the Amanda backup client RPM. We use yum to check for and install dependencies, in this case xinetd. As a part of the installation a user named amandabackup is created who belongs to the group disk. [root@iron ~]# yum --nogpgcheck install amanda-backup_client fc12.i686.rpm Loaded plugins: presto, refresh-packagekit Setting up Install Process Examining amanda-backup_client fc12.i686.rpm: amandabackup_client fc12.i686 Page 7 of 18

8 Installed: amanda-backup_client.i686 0: fc12 Dependency Installed: xinetd.i686 2: fc13 Complete! ~]# 3. As root set password for user amandabackup on Iron passwd amandabackup Changing password for user amandabackup. New UNIX password: Retype new UNIX password: passwd: all authentication tokens updated successfully. 4. To recover on a Linux client, you must first specify the tape device on the server to use. In each Linux clients we change the file /etc/amanda/amanda-client.conf. Change this line: tapedev "tape:/dev/your-tape-device-here" # your tape device to this: tapedev "file://data/amanda/vtape/dailyset1" # your tape device 5.2 Installing Amanda Client RPM on Copper (SLES 11) 1. Log in as the root user on Copper, your SUSE Linux Enterprise Server 11 client. 2. Get the client RPM. 3. Install the Amanda backup client RPM. As a part of the installation a user named amandabackup is created who belongs to the group disk. copper:~ # rpm -ivh amanda-backup_client sles11.i586.rpm Preparing... ########################################### [100%] Jun :48:34: Preparing to install: Amanda Community Edition - version Jun :48:34: Checking for 'amandabackup' user... Jun :48:34: Jun :48:34: The 'amandabackup; user account has been successfully created. Jun :48:34: Furthermore, the account has been automatically locked for you Jun :48:34: for security purposes. Once a password for the 'amandabackup' Jun :48:34: account has been set, the user can be unlocked by issuing Page 8 of 18

9 Need enterprise level support for Amanda? Upgrade to Amanda Enterprise Edition: Jun :48:43: Setting ownership and permissions for '/var/lib/amanda/.profile' Jun :48:44: === Amanda backup client installation complete. === Amanda installation log can be found in '/var/log/amanda/install.log' and errors (if any) in '/var/log/amanda/install.err'. copper:~ # 4. As root set password for user amandabackup on Copper copper:~ # passwd amandabackup Changing password for amandabackup. New Password: Reenter New Password: Password changed. 5. To recover on a Linux client, you must first specify the tape device on the server to use. In each Linux clients we change the file /etc/amanda/amanda-client.conf. Change this line: tapedev "tape:/dev/your-tape-device-here" # your tape device to this: tapedev "file://data/amanda/vtape/dailyset1" # your tape device 5.3 Installing Amanda Client on Uranium (Windows XP) 1. Navigate to the directory where you downloaded the Amanda Client package. 2. Double click on the file, e.g.: ZWC-Community-3.1.beta-32bit.zip. Then click on extract all files. Click on OK, then on Next. 3. Click on the newly created directory, e.g.: ZWC-Community-3.1.beta-32bit. Double-click the setup.exe to install the Windows client. 6 Configuring the Backup Server Amanda's quantum unit of backup is the disk list entry, or DLE. DLEs are entered into one or more configurations. We will build three DLEs, one for each machine we back up. A machine can have multiple DLEs, but DLEs do not span computers. We will build one configuration. By custom, Amanda examples use the configuration DailySet1. Should you ever need to edit the configuration, its files are usually found in /etc/amanda/dailyset1/. For example, later on we will add two dumptypes to our configuration so that we can use the Zmanda Windows Client. Page 9 of 18

10 6.1 Configuring the Server We will specify a number of parameters on the command line. There is more on these in the wiki and in the man page for amserverconfig. There are other options, but the defaults will do just fine for now. There is a brief description of the parameters we set initially in the Glossary, on page 18. We will back up all our clients to Quartz in the /data directory. Ensure that we are logged-in to Quartz as user root. 1. Create a directory for our vtapes, and set its ownership and permissions: [root@quartz ~]# mkdir -p /data/amanda/vtape/dailyset1 [root@quartz ~]# chown amandabackup:disk /data/amanda/vtape/dailyset1 [root@quartz ~]# chmod -R 750 /data/amanda/vtape/dailyset1 2. Change to the amandabackup user: [root@quartz ~]# su amandabackup 3. As amandabackup user, run amserverconfig to create a vtape configuration: -sh-3.2$ amserverconfig DailySet1 --template harddisk --tapedev /data/amanda/vtape/dailyset1 --mailto root@localhost --dumpcycle 1week --runspercycle 5 --tapecycle 12 --runtapes 1 Logging to /var/log/amanda/amserverconfig debug /etc/amanda/template.d directory created /var/lib/amanda/gnutar-lists directory exists /etc/amanda/dailyset1/advanced.conf created and updated curinfo and index directory created tapelist file created disklist file created Creating custom configuration using templates custom amanda.conf created creating vtape directory amlabel vtapes changer is reset /var/lib/amanda/example/xinetd.amandaserver contains the latest Amanda server daemon configuration. Please merge it to /etc/xinetd.d/amandaserver. /var/lib/amanda/.ssh/client_authorized_keys created. Please append to /var/lib/amanda/.ssh/authorized_keys file on Amanda clients DONE. Note the creation of SSH keys, useful for backups over SSH. It is up to you to manually (and securely) add the public key to the client amandabackup user's authorized_keys file. Page 10 of 18

11 6.2 Adding Client Iron (Fedora 13) Use amaddclient to enable backups of client iron: -sh-3.2$ amaddclient --config DailySet1 --client iron.example.com --diskdev /home/sunil --dumptype comp-user-tar Logging to /var/log/amanda/amaddclient debug /etc/amanda/dailyset1/disklist updated updating /var/lib/amanda/.amandahosts on quartz.example.com Attempting to update /var/lib/amanda/.amandahosts on iron.example.com.amandahosts 100% KB/s 00:00.amandahosts.tmp 100% KB/s 00:00 iron.example.com:/var/lib/amanda/.amandahosts updated successfully Creating amanda-client.conf for iron.example.com Creating /etc/amanda/dailyset1 on iron.example.com amanda-client.conf-iron.example.com 100% KB/s 00:00 Copy /var/lib/amanda/amanda-client.conf-iron.example.com to iron.example.com successfully File /var/lib/amanda/example/xinetd.amandaclient contains the latest Amanda client daemon configuration. Please merge it to /etc/xinetd.d/amandaclient. 6.3 Adding Client Copper (SLES 11) Use amaddclient to enable backups of client copper: -sh-3.2$ amaddclient --config DailySet1 --client copper.example.com --diskdev /srv/www/htdocs/ --dumptype comp-user-tar Logging to /var/log/amanda/amaddclient debug /etc/amanda/dailyset1/disklist updated updating /var/lib/amanda/.amandahosts on quartz.example.com Attempting to update /var/lib/amanda/.amandahosts on copper.example.com.amandahosts 100% KB/s 00:00.amandahosts.tmp 100% KB/s 00:00 copper.example.com:/var/lib/amanda/.amandahosts updated successfully Creating amanda-client.conf for copper.example.com Creating /etc/amanda/dailyset1 on copper.example.com amanda-client.conf-copper.example.com 100% KB/s 00:00 Copy /var/lib/amanda/amanda-client.conf-copper.example.com to copper.example.com successfully Page 11 of 18

12 File /var/lib/amanda/example/xinetd.amandaclient contains the latest Amanda client daemon configuration. Please merge it to /etc/xinetd.d/amandaclient. 6.4 Adding Client Uranium (Windows XP) Use amaddclient to enable backups of the Windows XP client (ZWC) Uranium: 1. Before running amaddclient, append the following dumptype definitions to the file /etc/amanda/template.d/dumptypes. These definitions are needed to backup ZWC clients. define dumptype zwc-normal { global program "DUMP" } define dumptype zwc-compress { global compress client fast program "DUMP" } 2. Run amaddclient for Uranium. You will notice several error messages indicating that our user does not have SSH access to Uranium. Most of the time, this is probably a good idea. For now it means amaddclient cannot copy an xinetd configuration file and an Amanda client configuration file onto Uranium for us. Usually, the fallback is for us to copy them manually, as the error message indicates. However, Uranium is a Windows machine, and doesn't run xinetd. The Zmanda client handles the issues for us. So we can ignore the error. -bash-3.00$ amaddclient --config DailySet1 --client uranium.zmanda.com --diskdev C:/Data --dumptype zwc-compress Logging to /var/log/amanda/amaddclient debug /etc/amanda/dailyset1/disklist updated updating /var/lib/amanda/.amandahosts on quartz.zmanda.com /var/lib/amanda/.amandahosts contains uranium.zmanda.com root, file not updated Attempting to update /var/lib/amanda/.amandahosts on uranium.zmanda.com ssh: connect to host uranium.zmanda.com port 22: Connection refused WARNING: scp from uranium.zmanda.com not successful. Check uranium.zmanda.com :/var/lib/amanda/.amandahosts file. If entry 'quartz.zmanda.com amandabackup' is not present, append the entry to the file manually. Creating amanda-client.conf for uranium.zmanda.com Creating /etc/amanda/dailyset1 on uranium.zmanda.com ssh: connect to host uranium.zmanda.com port 22: Connection refused WARNING: Cannot create /etc/amanda/dailyset1 on uranium.zmanda.com Page 12 of 18

13 Please copy /var/lib/amanda/amanda-client.conf-uranium.zmanda.com to uranium.zmanda.com manually File /var/lib/amanda/example/xinetd.amandaclient contains the latest Amanda client daemon configuration. Please merge it to /etc/xinetd.d/amandaclient. 7 Verification and Backup We will test the backup configuration for all three clients and then kick-off a backup run. Ensure that we are logged-in to Quartz as user amandabackup. 1. As amandabackup, run the amcheck command to test validity of the configuration and connectivity between client and server -sh-3.2$ amcheck DailySet1 Amanda Tape Server Host Check slot 1: volume 'DailySet1-1' Will write to volume 'DailySet1-1' in slot 1. NOTE: skipping tape-writable test NOTE: host info dir /etc/amanda/dailyset1/curinfo/iron.example.com does not exist NOTE: it will be created on the next run. NOTE: index dir /etc/amanda/dailyset1/index/iron.example.com does not exist NOTE: it will be created on the next run. NOTE: host info dir /etc/amanda/dailyset1/curinfo/copper.example.com does not exist NOTE: it will be created on the next run. NOTE: index dir /etc/amanda/dailyset1/index/copper.example.com does not exist NOTE: it will be created on the next run. NOTE: host info dir /etc/amanda/dailyset1/curinfo/uranium.example.com does not exist NOTE: it will be created on the next run. NOTE: index dir /etc/amanda/dailyset1/index/uranium.example.com does not exist NOTE: it will be created on the next run. Server check took seconds Amanda Backup Client Hosts Check Client check: 2 hosts checked in seconds. 0 problems found. (brought to you by Amanda 3.1.0) 2. The amcheck command should not generate any errors. The NOTE messages we see here are normal for DLEs that have not yet been backed up. If we see the expected 0 problems found result, we can now initiate the first full backup: Page 13 of 18

14 ~]$ amdump DailySet1 3. Once the backup run is complete, the root user should receive an with the backup summary on the Amanda server. 4. We can now create a cron job for user amandabackup that will execute amdump and initiate the backups automatically. Execute the crontab command to create the job: [amandabackup@quartz ~]$ crontab e and add this line to the file to run backups daily Monday through Friday at 1 AM: 0 1 * * 1-5 /usr/sbin/amdump DailySet1 8 Recovery Finally, we will perform a recovery of some of the data we have backed-up. This is a crucial step always verify a backup system to confirm that you can recover data. The recovery procedure for windows client is different from that for a Linux client. ZWC Community Edition does not yet support direct restore on a client. Instead, first restore data on your Amanda server (or another client), and then copy it to the client. 8.1 Recovery of Linux client (Copper) 1. On the host Copper, as the user root, run amrecover to initiate the data recovery process. Here we recover to a temporary directory. Any empty directory will do. copper:~/tmp/amanda # amrecover DailySet1 AMRECOVER Version Contacting server on quartz.example.com quartz AMANDA index server (3.1.0) ready. Setting restore date to today ( ) 200 Working date set to Config set to DailySet Host copper is not in your disklist. Trying host copper.example.com Dump host set to copper.example.com. Use the setdisk command to choose dump disk to recover 2. The list of commands below will demonstrate a recovery of a set of different files and directories to the "/tmp" directory. amrecover> listdisk 200- List of disk for host copper.example.com 201- /srv/www/htdocs/ 200 List of disk for host copper.example.com amrecover> setdisk /srv/www/htdocs/ 200 Disk set to /srv/www/htdocs/. amrecover> ls robots.txt index.html favicon.ico Page 14 of 18

15 apache_pb22_ani.gif apache_pb22.png apache_pb22.gif apache_pb.png apache_pb.gif amrecover> add * Added file /robots.txt Added file /index.html Added file /favicon.ico Added file /apache_pb22_ani.gif Added file /apache_pb22.png Added file /apache_pb22.gif Added file /apache_pb.png Added file /apache_pb.gif amrecover> extract Extracting files using tape drive file://data/amanda/vtape/dailyset1 on host quartz.example.com. The following tapes are needed: DailySet1-1 Extracting files using tape drive file://data/amanda/vtape/dailyset1 on host quartz.example.com. Load tape DailySet1-1 now Continue [?/Y/n/s/d]? Restoring files into directory /root/tmp/amanda All existing files in /root/tmp/amanda can be deleted Continue [?/Y/n]? y./apache_pb.gif./apache_pb.png./apache_pb22.gif./apache_pb22.png./apache_pb22_ani.gif./favicon.ico./index.html./robots.txt amrecover> exit 200 Good bye. Note that in the listing in amrecover, the dates are those of the backup, not necessarily those of the underlying files. 3. We can now verify that the files have been recovered successfully by running tree, find, ls -R, or any other suitable command. copper:~/tmp/amanda # ll -R total 40 drwxr-xr-x 2 root root :55. Page 15 of 18

16 drwxr-xr-x 3 root root :53.. -rw-r--r-- 1 root root :25 apache_pb22_ani.gif -rw-r--r-- 1 root root :25 apache_pb22.gif -rw-r--r-- 1 root root :25 apache_pb22.png -rw-r--r-- 1 root root :16 apache_pb.gif -rw-r--r-- 1 root root :16 apache_pb.png -rw-r--r-- 1 root root :08 favicon.ico -rw-r--r-- 1 root root :16 index.html -rw-r--r-- 1 root root :43 robots.txt 8.2 Recovery of ZWC client (Uranium) The procedure to recover backup of windows client Uranium is as follows. 1. Log in as root on quartz, the Amanda Server, and create a directory, where you will restore the data. Make user amandabackup the owner of the directory. [root@quartz amanda]# mkdir /restore [root@quartz amanda]# chown amandabackup:disk /restore/ 2. As user amandabackup confirm the type of backup that you want to restore using the command amadmin. In our case we will be restoring a full and an incremental backup, both dated dated 13 August Syntax for amadmin is amadmin <BackupSetName> find <hostname> <disk> [root@quartz amanda]# su - amandabackup -sh-3.2$ amadmin DailySet1 find uranium date host disk lv tape or file file part stat :14:31 uranium "C:/Data" 0 DailySet /1 OK 3. Change directory to /restore -sh-3.2$ cd /restore/ 4. Use amfetchdump to extract the contents from full backup ( :23:07).Syntax of the command is amfetchdump <BackupSetName> <client> <disk> <YYYYMMDDHHMMSS> sh-3.2$ amfetchdump DailySet1 uranium "C:/Data" volume(s) needed for restoration The following volumes are needed: DailySet1-1 Press enter when ready amfetchdump: 1: restoring split dumpfile: date host uranium disk "C:/Data" part 1/UNKNOWN lev 0 comp N program pkzip 5. Now you can see the data set in /restore. -sh-3.2$ ls uranium.c Data Page 16 of 18

17 -sh-3.2$ file uranium.c Data uranium.c Data : Zip archive data, at least v2.0 to extract 6. You can test the file locally. -sh-3.2$ unzip -t uranium.c Data Archive: uranium.c Data testing: ZWCBackupInfo error: invalid compressed data to inflate testing: ZWC-Community-3.1.beta-32bit.zip OK At least one error was detected in uranium.c Data The error on ZWCBackupInfo is normal, and will not affect your ability to extract the payload. 7. Move the file to the Windows system where you want to restore and extract the data using Compressed Folders utility in Windows XP or programs such as Winzip or Pkzip. Or you can extract it locally with unzip. restore]# unzip uranium.c Data Archive: uranium.c Data skipping: ZWCBackupInfo volume label inflating: ZWC-Community-3.1.beta-32bit.zip Note the difference in the two recovery clients. amfetchddump recovers a complete dump as a zip file while amrecover extracts files from the storage medium. Use amfetchdump where you may have ownership or permissions issues. For example, we might use amfetchdump to recover our Windows machines because Windows and Linux have different permissions schemes. Note also that Amanda uses operating system utilities (tar, dump, zip, etc.) to create the dumps; this means you are not dependent on proprietary programs to recover your data. Note well the implications for security: with proper (or improper!) access permissions, anyone can recover data for any client on any other client. 9 Conclusion As we have just seen, backing-up and restoring files with Amanda is incredibly easy. Setup is also very quick. For more information, there is a wealth of documentation and examples available on the Amanda Wiki. There is also a large community ready to respond to ideas and requests for help on the Amanda Forums. As you explore the features and flexibility of Amanda, you will find that there is much more power to be harnessed from building your backup and recovery solution around Amanda. 10 Request for Feedback Did this paper help you in your configuration? What did we not cover well? What could we have done better? Please provide feedback on this paper to community@zmanda.com. Your feedback, however brief, is very much appreciated. Page 17 of 18

18 11 Glossary DLE: Disk List Entry, the quantum unit of Amanda backup. dumpcycle: The number of days in the backup cycle, whether you run backups on all of those days or not. Each DLE will be backed up in its entirety at least once during this period. Specify per DLE in amanda.conf. dumptype: A definition of a dump. It specifies whether the client or server will compress or encrypt the dump (and with which program), what exclusions to apply (e.g. excluding a package cache under /var), and other characteristics. holding disk: an intermediate storage area for caching backup data. Specify per DLE in amanda.conf. mailto: One or more addresses to send reports to. Specify per DLE in amanda.conf. runspercycle: How many dumps per cycle. In our example (see Section 6, Configuring the Backup Server, on page 9), we have a dump cycle of a week, but only five runs per week. Later, we will set this up as a cron job to run Monday through Friday (see Section 7, Verification and Backup, on page 13). Specify per DLE in amanda.conf. runtapes: The maximum number of tapes per a single run. You can span tapes (use multiple tapes per run) with this parameter, but we are going to keep our calculations simple by ignoring that capability. Specify per DLE in amanda.conf. tapecycle: How many tapes we will have. With physical tapes, of course, a physical count is the maximum. With virtual tapes, we can change this count on the fly according to disk usage. We will run five dumps a week. With 12 tapes, we keep a week of old backups in reserve, and still have two spares. The reserve week ensures that we always have at least one full backup for each DLE on hand. Spares are more important for physical tapes, but it's good practice to have them even with virtual tapes. Specify per DLE in amanda.conf. tapedev: The actual backup device. Normally this is a tape drive, e.g. /dev/st0; in this case a directory we will build. Specify per DLE in amanda.conf. template: Specify the type of backup medium, in this case virtual tapes on a hard drive. Specify per DLE in amanda.conf. Page 18 of 18

Setting-Up an Open-Source Backup Software Amanda Community in About 15 Minutes

Setting-Up an Open-Source Backup Software Amanda Community in About 15 Minutes Setting-Up an Open-Source Backup Software Amanda Community in About 5 Minutes Abstract Amanda is the most popular open source backup and recovery software in the world because of its openness, robustness,

More information

When Bad Things Happen to Good Amanda Backup Servers

When Bad Things Happen to Good Amanda Backup Servers When Bad Things Happen to Good Amanda Backup Servers By Lois Garcia, Dmitri Joukovski and Pavel Pragin White Paper "Even if your backup system makes volumes that can be read by native backup utilities,

More information

Amanda The Open Source Backup & Archiving Software. Ian Turner ian@zmanda.com 11 April 2006. Copyright 2006 Zmanda, Inc. All rights reserved.

Amanda The Open Source Backup & Archiving Software. Ian Turner ian@zmanda.com 11 April 2006. Copyright 2006 Zmanda, Inc. All rights reserved. Amanda The Open Source Backup & Archiving Software Ian Turner ian@zmanda.com 11 April 2006 Copyright 2006 Zmanda, Inc. All rights reserved. 1 Agenda What is Amanda? Amanda features Configuration Administration

More information

How to backup a remote MySQL server with ZRM over the Internet

How to backup a remote MySQL server with ZRM over the Internet How to backup a remote MySQL server with ZRM over the Internet White paper "As MySQL gains widespread adoption and moves more broadly into the enterprise, ZRM for MySQL addresses the growing need among

More information

BF2CC Daemon Linux Installation Guide

BF2CC Daemon Linux Installation Guide BF2CC Daemon Linux Installation Guide Battlefield 2 + BF2CC Installation Guide (Linux) 1 Table of contents 1. Introduction... 3 2. Opening ports in your firewall... 4 3. Creating a new user account...

More information

Amanda, a networked server based backup system. Kris Boulez (krbou@pgsgent.be)

Amanda, a networked server based backup system. Kris Boulez (krbou@pgsgent.be) Amanda, a networked server based backup system Kris Boulez (krbou@pgsgent.be) Overview Introduction Setup & Config Normal operation Something goes wrong Future Competitors Questions 5 juli, 1999 Kris Boulez

More information

Online Backup Client User Manual

Online Backup Client User Manual Online Backup Client User Manual Software version 3.21 For Linux distributions January 2011 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have

More information

Advantages of Amanda over Proprietary Backup

Advantages of Amanda over Proprietary Backup Advantages of Amanda over Proprietary Backup Gregory Grant Revision 02 Abstract This white paper discusses how Amanda compares to other backup products. It will help you understand some key Amanda differences,

More information

Backing Up TestTrack Native Project Databases

Backing Up TestTrack Native Project Databases Backing Up TestTrack Native Project Databases TestTrack projects should be backed up regularly. You can use the TestTrack Native Database Backup Command Line Utility to back up TestTrack 2012 and later

More information

1. Product Information

1. Product Information ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such

More information

Online Backup Client User Manual Linux

Online Backup Client User Manual Linux Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based

More information

Zmanda: Open Source Backup

Zmanda: Open Source Backup Zmanda: Open Source Backup Chander Kant (ck@zmanda.com) CEO Zmanda, Inc. www.zmanda.com Zmanda: Open Source Backup 1 Agenda A Case for Open Source Backup Introduction to Amanda Amanda Enterprise Edition

More information

EVault Software. Course 361 Protecting Linux and UNIX with EVault

EVault Software. Course 361 Protecting Linux and UNIX with EVault EVault Software Course 361 Protecting Linux and UNIX with EVault Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab... 3 Computers Used in

More information

MySQL Backups: From strategy to Implementation

MySQL Backups: From strategy to Implementation MySQL Backups: From strategy to Implementation Mike Frank Senior Product Manager 1 Program Agenda Introduction The 5 Key Steps Advanced Options References 2 Backups are a DBAs Top Priority Be Prepared

More information

RecoveryVault Express Client User Manual

RecoveryVault Express Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

Attix5 Pro Server Edition

Attix5 Pro Server Edition Attix5 Pro Server Edition V7.0.3 User Manual for Linux and Unix operating systems Your guide to protecting data with Attix5 Pro Server Edition. Copyright notice and proprietary information All rights reserved.

More information

Prerequisites and Configuration Guide

Prerequisites and Configuration Guide Prerequisites and Configuration Guide Informatica Support Console (Version 2.0) Table of Contents Chapter 1: Overview.................................................... 2 Chapter 2: Minimum System Requirements.................................

More information

Online Backup Linux Client User Manual

Online Backup Linux Client User Manual Online Backup Linux Client User Manual Software version 4.0.x For Linux distributions August 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might

More information

Easy Setup Guide 1&1 CLOUD SERVER. Creating Backups. for Linux

Easy Setup Guide 1&1 CLOUD SERVER. Creating Backups. for Linux Easy Setup Guide 1&1 CLOUD SERVER Creating Backups for Linux Legal notice 1&1 Internet Inc. 701 Lee Road, Suite 300 Chesterbrook, PA 19087 USA www.1and1.com info@1and1.com August 2015 Copyright 2015 1&1

More information

Online Backup Client User Manual

Online Backup Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

NRPE Documentation CONTENTS. 1. Introduction... a) Purpose... b) Design Overview... 2. Example Uses... a) Direct Checks... b) Indirect Checks...

NRPE Documentation CONTENTS. 1. Introduction... a) Purpose... b) Design Overview... 2. Example Uses... a) Direct Checks... b) Indirect Checks... Copyright (c) 1999-2007 Ethan Galstad Last Updated: May 1, 2007 CONTENTS Section 1. Introduction... a) Purpose... b) Design Overview... 2. Example Uses... a) Direct Checks... b) Indirect Checks... 3. Installation...

More information

Avira Update Manager User Manual

Avira Update Manager User Manual Avira Update Manager User Manual Table of contents Table of contents 1. Product information........................................... 4 1.1 Functionality................................................................

More information

Configuring Sun StorageTek SL500 tape library for Amanda Enterprise backup software

Configuring Sun StorageTek SL500 tape library for Amanda Enterprise backup software Configuring Sun StorageTek SL500 tape library for Amanda Enterprise backup software Zmanda Inc. October 2009 Table of Contents Introduction... 4... 5 Sun StorageTek SL 500TM... 5 SL 500 Configuration...

More information

Local Caching Servers (LCS): User Manual

Local Caching Servers (LCS): User Manual Local Caching Servers (LCS): User Manual Table of Contents Local Caching Servers... 1 Supported Browsers... 1 Getting Help... 1 System Requirements... 2 Macintosh... 2 Windows... 2 Linux... 2 Downloading

More information

4PSA Total Backup 3.0.0. User's Guide. for Plesk 10.0.0 and newer versions

4PSA Total Backup 3.0.0. User's Guide. for Plesk 10.0.0 and newer versions 4PSA Total Backup 3.0.0 for Plesk 10.0.0 and newer versions User's Guide For more information about 4PSA Total Backup, check: http://www.4psa.com Copyright 2009-2011 4PSA. User's Guide Manual Version 84359.5

More information

XCloner Official User Manual

XCloner Official User Manual XCloner Official User Manual Copyright 2010 XCloner.com www.xcloner.com All rights reserved. xcloner.com is not affiliated with or endorsed by Open Source Matters or the Joomla! Project. What is XCloner?

More information

Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6

Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6 201 Datavoice House, PO Box 267, Stellenbosch, 7599 16 Elektron Avenue, Technopark, Tel: +27 218886500 Stellenbosch, 7600 Fax: +27 218886502 Adept Internet (Pty) Ltd. Reg. no: 1984/01310/07 VAT No: 4620143786

More information

OpenGeo Suite for Linux Release 3.0

OpenGeo Suite for Linux Release 3.0 OpenGeo Suite for Linux Release 3.0 OpenGeo October 02, 2012 Contents 1 Installing OpenGeo Suite on Ubuntu i 1.1 Installing OpenGeo Suite Enterprise Edition............................... ii 1.2 Upgrading.................................................

More information

IBM WebSphere Application Server Version 7.0

IBM WebSphere Application Server Version 7.0 IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the

More information

Backing Up Your System With rsnapshot

Backing Up Your System With rsnapshot Roberto C. Sánchez Dayton Linux Users Group InstallFest Saturday, March 1, 2014 Overview About the Presenter About and Alternatives Installing Options in Configuring Other Operating Systems (e.g., Windows,

More information

13.1 Backup virtual machines running on VMware ESXi / ESX Server

13.1 Backup virtual machines running on VMware ESXi / ESX Server 13 Backup / Restore VMware Virtual Machines Tomahawk Pro This chapter describes how to backup and restore virtual machines running on VMware ESX, ESXi Server or VMware Server 2.0. 13.1 Backup virtual machines

More information

CompleteView Admin Console Users Guide. Version 3.0.0 Revised: 02/15/2008

CompleteView Admin Console Users Guide. Version 3.0.0 Revised: 02/15/2008 CompleteView Admin Console Users Guide Version 3.0.0 Revised: 02/15/2008 Table Of Contents Configuration... 3 Starting the Admin Console... 3 Adding a Server... 4 Monitoring Server Status... 6 Menus...

More information

insync Installation Guide

insync Installation Guide insync Installation Guide 5.2 Private Cloud Druva Software June 21, 13 Copyright 2007-2013 Druva Inc. All Rights Reserved. Table of Contents Deploying insync Private Cloud... 4 Installing insync Private

More information

Recommended File System Ownership and Privileges

Recommended File System Ownership and Privileges FOR MAGENTO COMMUNITY EDITION Whenever a patch is released to fix an issue in the code, a notice is sent directly to your Admin Inbox. If the update is security related, the incoming message is colorcoded

More information

IUCLID 5 Guidance and support. Installation Guide Distributed Version. Linux - Apache Tomcat - PostgreSQL

IUCLID 5 Guidance and support. Installation Guide Distributed Version. Linux - Apache Tomcat - PostgreSQL IUCLID 5 Guidance and support Installation Guide Distributed Version Linux - Apache Tomcat - PostgreSQL June 2009 Legal Notice Neither the European Chemicals Agency nor any person acting on behalf of the

More information

Gladinet Cloud Backup V3.0 User Guide

Gladinet Cloud Backup V3.0 User Guide Gladinet Cloud Backup V3.0 User Guide Foreword The Gladinet User Guide gives step-by-step instructions for end users. Revision History Gladinet User Guide Date Description Version 8/20/2010 Draft Gladinet

More information

Open source backup software Amanda

Open source backup software Amanda Open source backup software Amanda White paper "As the founder of a new software development business, I have been keenly aware that we must diligently protect our intellectual property and effectively

More information

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 1 Table of Contents Chapter 1: Installation Overview... 3 Introduction... 3 Minimum Requirements...

More information

Planning for an Amanda Disaster Recovery System

Planning for an Amanda Disaster Recovery System Planning for an Amanda Disaster Recovery System Bernd Harmsen bjh@datasysteme.de www.datasysteme.de 22nd April 2003 Contents 1 Introduction 1 1.1 Why we need a specialized Amanda Disaster Recovery System?..............

More information

OroTimesheet 7 Installation Guide

OroTimesheet 7 Installation Guide Installation Guide Copyright 1996-2011 OroLogic Inc. http://www.orologic.com Revision 7.00 Contents I Contents Installation Guide 2 Introduction 2 Installing OroTimesheet 2 Installing OroTimesheet in stand-alone

More information

Reflection DBR USER GUIDE. Reflection DBR User Guide. 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip.

Reflection DBR USER GUIDE. Reflection DBR User Guide. 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip. Reflection DBR USER GUIDE 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip.net Page 1 of 1 Table of Contents Overview 3 Reflection DBR Client and Console Installation 4

More information

Security Correlation Server Backup and Recovery Guide

Security Correlation Server Backup and Recovery Guide orrelog Security Correlation Server Backup and Recovery Guide This guide provides information to assist administrators and operators with backing up the configuration and archive data of the CorreLog server,

More information

Using Symantec NetBackup with Symantec Security Information Manager 4.5

Using Symantec NetBackup with Symantec Security Information Manager 4.5 Using Symantec NetBackup with Symantec Security Information Manager 4.5 Using Symantec NetBackup with Symantec Security Information Manager Legal Notice Copyright 2007 Symantec Corporation. All rights

More information

BACKUP YOUR SENSITIVE DATA WITH BACKUP- MANAGER

BACKUP YOUR SENSITIVE DATA WITH BACKUP- MANAGER Training course 2007 BACKUP YOUR SENSITIVE DATA WITH BACKUP- MANAGER Nicolas FUNKE PS2 ID : 45722 This document represents my internships technical report. I worked for the Biarritz's Town Hall during

More information

CS197U: A Hands on Introduction to Unix

CS197U: A Hands on Introduction to Unix CS197U: A Hands on Introduction to Unix Lecture 4: My First Linux System J.D. DeVaughn-Brown University of Massachusetts Amherst Department of Computer Science jddevaughn@cs.umass.edu 1 Reminders After

More information

Linux System Administration on Red Hat

Linux System Administration on Red Hat Linux System Administration on Red Hat Kenneth Ingham September 29, 2009 1 Course overview This class is for people who are familiar with Linux or Unix systems as a user (i.e., they know file manipulation,

More information

How To Install Acronis Backup & Recovery 11.5 On A Linux Computer

How To Install Acronis Backup & Recovery 11.5 On A Linux Computer Acronis Backup & Recovery 11.5 Server for Linux Update 2 Installation Guide Copyright Statement Copyright Acronis International GmbH, 2002-2013. All rights reserved. Acronis and Acronis Secure Zone are

More information

Linux System Administration. System Administration Tasks

Linux System Administration. System Administration Tasks System Administration Tasks User and Management useradd - Adds a new user account userdel - Deletes an existing account usermod - Modifies an existing account /etc/passwd contains user name, user ID #,

More information

EMC AVAMAR 6.0 GUIDE FOR IBM DB2 P/N 300-011-636 REV A01 EMC CORPORATION CORPORATE HEADQUARTERS: HOPKINTON, MA 01748-9103 1-508-435-1000 WWW.EMC.

EMC AVAMAR 6.0 GUIDE FOR IBM DB2 P/N 300-011-636 REV A01 EMC CORPORATION CORPORATE HEADQUARTERS: HOPKINTON, MA 01748-9103 1-508-435-1000 WWW.EMC. EMC AVAMAR 6.0 FOR IBM DB2 GUIDE P/N 300-011-636 REV A01 EMC CORPORATION CORPORATE HEADQUARTERS: HOPKINTON, MA 01748-9103 1-508-435-1000 WWW.EMC.COM Copyright and Trademark Notices Copyright 2002-2011

More information

Acronis Backup & Recovery 11

Acronis Backup & Recovery 11 Acronis Backup & Recovery 11 Update 0 Installation Guide Applies to the following editions: Advanced Server Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server for

More information

Cloud Server powered by Mac OS X. Getting Started Guide. Cloud Server. powered by Mac OS X. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1

Cloud Server powered by Mac OS X. Getting Started Guide. Cloud Server. powered by Mac OS X. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1 Getting Started Guide Cloud Server powered by Mac OS X Getting Started Guide Page 1 Getting Started Guide: Cloud Server powered by Mac OS X Version 1.0 (02.16.10) Copyright 2010 GoDaddy.com Software, Inc.

More information

Introweb Remote Backup Client for Mac OS X User Manual. Version 3.20

Introweb Remote Backup Client for Mac OS X User Manual. Version 3.20 Introweb Remote Backup Client for Mac OS X User Manual Version 3.20 1. Contents 1. Contents...2 2. Product Information...4 3. Benefits...4 4. Features...5 5. System Requirements...6 6. Setup...7 6.1. Setup

More information

MTA Course: 10753 Windows Operating System Fundamentals Topic: Understand backup and recovery methods File name: 10753_WindowsOS_SA_6.

MTA Course: 10753 Windows Operating System Fundamentals Topic: Understand backup and recovery methods File name: 10753_WindowsOS_SA_6. STUDENT ACTIVITY 6.1: UNDERSTAND BACKUP AND RECOVERY METHODS MTA Course: 10753 Windows Operating System Fundamentals Topic: Understand backup and recovery methods File name: 10753_WindowsOS_SA_6.1 Lesson

More information

Acronis Backup & Recovery 11.5

Acronis Backup & Recovery 11.5 Acronis Backup & Recovery 11.5 Installation Guide Applies to the following editions: Advanced Server Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server for Windows

More information

Managing Software and Configurations

Managing Software and Configurations 55 CHAPTER This chapter describes how to manage the ASASM software and configurations and includes the following sections: Saving the Running Configuration to a TFTP Server, page 55-1 Managing Files, page

More information

Release Notes for McAfee(R) VirusScan(R) Enterprise for Linux Version 1.9.0 Copyright (C) 2014 McAfee, Inc. All Rights Reserved.

Release Notes for McAfee(R) VirusScan(R) Enterprise for Linux Version 1.9.0 Copyright (C) 2014 McAfee, Inc. All Rights Reserved. Release Notes for McAfee(R) VirusScan(R) Enterprise for Linux Version 1.9.0 Copyright (C) 2014 McAfee, Inc. All Rights Reserved. Release date: August 28, 2014 This build was developed and tested on: -

More information

CommandCenter Secure Gateway

CommandCenter Secure Gateway CommandCenter Secure Gateway Quick Setup Guide for CC-SG Virtual Appliance and lmadmin License Server Management This Quick Setup Guide explains how to install and configure the CommandCenter Secure Gateway.

More information

IBM Endpoint Manager Version 9.1. Patch Management for Red Hat Enterprise Linux User's Guide

IBM Endpoint Manager Version 9.1. Patch Management for Red Hat Enterprise Linux User's Guide IBM Endpoint Manager Version 9.1 Patch Management for Red Hat Enterprise Linux User's Guide IBM Endpoint Manager Version 9.1 Patch Management for Red Hat Enterprise Linux User's Guide Note Before using

More information

Attix5 Pro. Your guide to protecting data with Attix5 Pro Desktop & Laptop Edition. V6.0 User Manual for Mac OS X

Attix5 Pro. Your guide to protecting data with Attix5 Pro Desktop & Laptop Edition. V6.0 User Manual for Mac OS X Attix5 Pro Your guide to protecting data with Attix5 Pro Desktop & Laptop Edition V6.0 User Manual for Mac OS X Copyright Notice and Proprietary Information All rights reserved. Attix5, 2011 Trademarks

More information

Installation Guide. McAfee VirusScan Enterprise for Linux 1.9.0 Software

Installation Guide. McAfee VirusScan Enterprise for Linux 1.9.0 Software Installation Guide McAfee VirusScan Enterprise for Linux 1.9.0 Software COPYRIGHT Copyright 2013 McAfee, Inc. Do not copy without permission. TRADEMARK ATTRIBUTIONS McAfee, the McAfee logo, McAfee Active

More information

BackupAssist v6 quickstart guide

BackupAssist v6 quickstart guide New features in BackupAssist v6... 2 VSS application backup (Exchange, SQL, SharePoint)... 3 System State backup... 3 Restore files, applications, System State and mailboxes... 4 Fully cloud ready Internet

More information

Online Backup Client User Manual Mac OS

Online Backup Client User Manual Mac OS Online Backup Client User Manual Mac OS 1. Product Information Product: Online Backup Client for Mac OS X Version: 4.1.7 1.1 System Requirements Operating System Mac OS X Leopard (10.5.0 and higher) (PPC

More information

Online Backup Client User Manual Mac OS

Online Backup Client User Manual Mac OS Online Backup Client User Manual Mac OS 1. Product Information Product: Online Backup Client for Mac OS X Version: 4.1.7 1.1 System Requirements Operating System Mac OS X Leopard (10.5.0 and higher) (PPC

More information

Monitoring Clearswift Gateways with SCOM

Monitoring Clearswift Gateways with SCOM Technical Guide Version 01 28/11/2014 Documentation Information File Name Document Author Document Filename Monitoring the gateways with _v1.docx Iván Blesa Monitoring the gateways with _v1.docx Issue

More information

DS License Server V6R2013x

DS License Server V6R2013x DS License Server V6R2013x DS License Server V6R2013x Installation and Configuration Guide Contains JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 7 Contains IBM(R) 64-bit SDK for AIX(TM), Java(TM) Technology

More information

NovaBACKUP. Storage Server. NovaStor / May 2011

NovaBACKUP. Storage Server. NovaStor / May 2011 NovaBACKUP Storage Server NovaStor / May 2011 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change without notice.

More information

Customer Control Panel Manual

Customer Control Panel Manual Customer Control Panel Manual Contents Introduction... 2 Before you begin... 2 Logging in to the Control Panel... 2 Resetting your Control Panel password.... 3 Managing FTP... 4 FTP details for your website...

More information

Partek Flow Installation Guide

Partek Flow Installation Guide Partek Flow Installation Guide Partek Flow is a web based application for genomic data analysis and visualization, which can be installed on a desktop computer, compute cluster or cloud. Users can access

More information

Acronis Backup & Recovery 10 Server for Linux. Installation Guide

Acronis Backup & Recovery 10 Server for Linux. Installation Guide Acronis Backup & Recovery 10 Server for Linux Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management

More information

Acronis Backup & Recovery 10 Server for Linux. Update 5. Installation Guide

Acronis Backup & Recovery 10 Server for Linux. Update 5. Installation Guide Acronis Backup & Recovery 10 Server for Linux Update 5 Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management

More information

Version 4.61 or Later. Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide.

Version 4.61 or Later. Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide. Version 4.61 or Later Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide. This manual, as well as the software described in it, is furnished

More information

Deploying the BIG-IP LTM with the Cacti Open Source Network Monitoring System

Deploying the BIG-IP LTM with the Cacti Open Source Network Monitoring System DEPLOYMENT GUIDE Deploying the BIG-IP LTM with the Cacti Open Source Network Monitoring System Version 1.0 Deploying F5 with Cacti Open Source Network Monitoring System Welcome to the F5 and Cacti deployment

More information

Online Backup Client User Manual

Online Backup Client User Manual For Mac OS X Software version 4.1.7 Version 2.2 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by other means.

More information

BackupAssist v5 vs. v6

BackupAssist v5 vs. v6 COMPARISON www.backupassist.com 2 What s new in BackupAssist version 6? There are three main reasons why you should upgrade to BackupAssist v6: 1. To keep up with the latest best practice backup standards

More information

MarkLogic Server. Installation Guide for All Platforms. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Installation Guide for All Platforms. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved. Installation Guide for All Platforms 1 MarkLogic 8 February, 2015 Last Revised: 8.0-4, November, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Installation

More information

DS License Server. Installation and Configuration Guide. 3DEXPERIENCE R2014x

DS License Server. Installation and Configuration Guide. 3DEXPERIENCE R2014x DS License Server Installation and Configuration Guide 3DEXPERIENCE R2014x Contains JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 7 Contains IBM(R) 64-bit SDK for AIX(TM), Java(TM) Technology Edition, Version

More information

Incremental Backup Script. Jason Healy, Director of Networks and Systems

Incremental Backup Script. Jason Healy, Director of Networks and Systems Incremental Backup Script Jason Healy, Director of Networks and Systems Last Updated Mar 18, 2008 2 Contents 1 Incremental Backup Script 5 1.1 Introduction.............................. 5 1.2 Design Issues.............................

More information

Moxa Device Manager 2.3 User s Manual

Moxa Device Manager 2.3 User s Manual User s Manual Third Edition, March 2011 www.moxa.com/product 2011 Moxa Inc. All rights reserved. User s Manual The software described in this manual is furnished under a license agreement and may be used

More information

Back Up Linux And Windows Systems With BackupPC

Back Up Linux And Windows Systems With BackupPC By Falko Timme Published: 2007-01-25 14:33 Version 1.0 Author: Falko Timme Last edited 01/19/2007 This tutorial shows how you can back up Linux and Windows systems with BackupPC.

More information

Laptop Backup - Administrator Guide (Windows)

Laptop Backup - Administrator Guide (Windows) Laptop Backup - Administrator Guide (Windows) Page 1 of 86 Page 2 of 86 Laptop Backup - Administrator Guide (Windows) TABLE OF CONTENTS OVERVIEW PREPARE COMMCELL SETUP FIREWALL USING PROXY SETUP FIREWALL

More information

BackupAssist v6 quickstart guide

BackupAssist v6 quickstart guide Using the new features in BackupAssist v6... 2 VSS application backup (Exchange, SQL, SharePoint)... 2 Backing up VSS applications... 2 Restoring VSS applications... 3 System State backup and restore...

More information

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner

More information

Step-by-Step Guide to Securing Windows XP Professional with Service Pack 2 in Small and Medium Businesses

Step-by-Step Guide to Securing Windows XP Professional with Service Pack 2 in Small and Medium Businesses Step-by-Step Guide to Securing Windows XP Professional with Service Pack 2 in Small and Medium Businesses 2004 Microsoft Corporation. All rights reserved. This document is for informational purposes only.

More information

WinSCP PuTTY as an alternative to F-Secure July 11, 2006

WinSCP PuTTY as an alternative to F-Secure July 11, 2006 WinSCP PuTTY as an alternative to F-Secure July 11, 2006 Brief Summary of this Document F-Secure SSH Client 5.4 Build 34 is currently the Berkeley Lab s standard SSH client. It consists of three integrated

More information

EDB Backup and Recovery Tool Guide

EDB Backup and Recovery Tool Guide EDB Backup and Recovery Tool 1.1 June 2, 2015 , Version 1.1 by EnterpriseDB Corporation Copyright 2014-2015 EnterpriseDB Corporation. All rights reserved. EnterpriseDB Corporation, 34 Crosby Drive, Suite

More information

Orixcloud Backup Client. Frequently Asked Questions

Orixcloud Backup Client. Frequently Asked Questions Frequently Asked Questions Version 1.2 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by other means. No rights

More information

Acronis Backup & Recovery 10 Server for Linux. Quick Start Guide

Acronis Backup & Recovery 10 Server for Linux. Quick Start Guide Acronis Backup & Recovery 10 Server for Linux Quick Start Guide Table of contents 1 Supported operating systems...3 2 What you need to get started...3 3 Installing and starting to use the product...3 3.1

More information

Together with SAP MaxDB database tools, you can use third-party backup tools to backup and restore data. You can use third-party backup tools for the

Together with SAP MaxDB database tools, you can use third-party backup tools to backup and restore data. You can use third-party backup tools for the Together with SAP MaxDB database tools, you can use third-party backup tools to backup and restore data. You can use third-party backup tools for the following actions: Backing up to data carriers Complete

More information

LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013

LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013 LOCKSS on LINUX CentOS6 Installation Manual 08/22/2013 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 6 BIOS Settings... 9 Installation... 10 Firewall Configuration...

More information

How To Install Acronis Backup And Recovery 10 On A Computer Or Network With A Hard Drive (For A Non-Profit)

How To Install Acronis Backup And Recovery 10 On A Computer Or Network With A Hard Drive (For A Non-Profit) Acronis Backup & Recovery 10 Advanced Server Virtual Edition Installation Guide Table of Contents 1. Installation of Acronis Backup & Recovery 10... 3 1.1. Acronis Backup & Recovery 10 components... 3

More information

EVault for Data Protection Manager. Course 361 Protecting Linux and UNIX with EVault

EVault for Data Protection Manager. Course 361 Protecting Linux and UNIX with EVault EVault for Data Protection Manager Course 361 Protecting Linux and UNIX with EVault Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab...

More information

Table of Contents. Online backup Manager User s Guide

Table of Contents. Online backup Manager User s Guide Table of Contents Backup / Restore VMware Virtual Machines... Error! Bookmark not defined. Backup virtual machines running on VMware ESXi / ESX Server with VDDK / non VDDK... 2 Requirements and recommendations...

More information

In order to upload a VM you need to have a VM image in one of the following formats:

In order to upload a VM you need to have a VM image in one of the following formats: What is VM Upload? 1. VM Upload allows you to import your own VM and add it to your environment running on CloudShare. This provides a convenient way to upload VMs and appliances which were already built.

More information

CA arcserve Unified Data Protection Agent for Linux

CA arcserve Unified Data Protection Agent for Linux CA arcserve Unified Data Protection Agent for Linux User Guide Version 5.0 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as

More information

Xpresstransfer Online Backup Manager General Technical FAQ

Xpresstransfer Online Backup Manager General Technical FAQ Xpresstransfer Online Backup Manager General Technical FAQ 1. General..... 2 1.1. Can you explain the concept briefly on how the Xpresstransfer software works?... 2 2. Xpresstransfer Online Backup Manager

More information

Browser Client 2.0 Admin Guide

Browser Client 2.0 Admin Guide Browser Client is a web-based application that allows users to point their browser at a URL and view live video from a set of Intellex units. Browser Client 2.0 is compatible with Intellex 3.2 software.

More information

Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64

Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64 Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64 http://www.suse.com 1 Table of Contents Introduction...3 Hardware and

More information

Introduction to Operating Systems

Introduction to Operating Systems Introduction to Operating Systems It is important that you familiarize yourself with Windows and Linux in preparation for this course. The exercises in this book assume a basic knowledge of both of these

More information

Stellar Phoenix. SQL Database Repair 6.0. Installation Guide

Stellar Phoenix. SQL Database Repair 6.0. Installation Guide Stellar Phoenix SQL Database Repair 6.0 Installation Guide Overview Stellar Phoenix SQL Database Repair software is an easy to use application designed to repair corrupt or damaged Microsoft SQL Server

More information

Acronis Backup & Recovery 11.5

Acronis Backup & Recovery 11.5 Acronis Backup & Recovery 11.5 Update 2 Installation Guide Applies to the following editions: Advanced Server Server for Windows Virtual Edition Server for Linux Advanced Server SBS Edition Workstation

More information