2.Rename the recovery archive. (The path to your recovery archive might be different from the example.) The name of the saved recovery archive can be anything unique, but it should be outside the naming convention yyyy-mm-dd,hh:mm.

#cd /var/opt/ignite/recovery/archives/client

#mv yyyy-mm-dd,hh:mmRecovery_Archive.sav

3.If the system where recovery images are stored is different from your Ignite-UX server, log in to the Ignite-UX server.

4.Rename the recovery archive directory.

#cd /var/opt/ignite/clients/client/recovery

#mv yyyy-mm-dd,hh:mmRecovery_Archive.sav

5.If the renamed recovery archive directory is the target of the symbolic link latest, then link latest to the new directory.

#rm latest

#ln -s Recovery_Archive.sav latest

6.Edit the archive_cfg file in the Recovery_Archive.sav directory to reference the new recovery archive name.

Change the archive_path variable inside the (source_type == "NET") clause to the name of the saved recovery image.

(source_type == "NET") { archive_path = "Recovery_Archive.sav"

}else { archive_path = "1"

}

7.Use the manage_index command to update the configuration clause name and description, and to change the directory to the archive's configuration files.

Rename the configuration clause:

#manage_index -m 'yyyy-mm-dd,hh:mmRecovery Archive' \

-c 'Your configuration name' \

-i /var/opt/ignite/clients/client/CINDEX

Update the configuration clause description:

#manage_index -y 'Your configuration description' \ -c 'Your configuration name' \

-i /var/opt/ignite/clients/client/CINDEX

Update the archive's configuration files to the new directory.

Use manage_index to get a list of all the files associated with the cfg clause.

#manage_index -w -c 'Your configuration name'\ -i /var/opt/ignite/clients/client/CINDEX

For each configuration file to rename, remove the references to the old directory. This example renames archive_cfg. The other two configuration files to move are control_cfg and system_cfg.

#manage_index -t-c 'Your configuration name' \ -frecovery/yyyy-mm-dd,hh:mm/archive_cfg \ -i /var/opt/ignite/clients/client/CINDEX

For each configuration file to rename, add the references to the new directory:

#manage_index -a -c 'Your configuration name' \ -f recovery/Recovery_Archive.sav/archive_cfg \ -i /var/opt/ignite/clients/client/CINDEX

System Recovery 211