Installation Manager - cws-khuntly/WebSphere GitHub Wiki
date: 2025-05-08 15:28:30 created: 2025-05-08 15:28:22 categories:
- WebSphere / Backups
Create backup date variable:
declare -x BACKUP_DATE_STAMP=$(date +"%d-%m-%Y_%H-%M-%S")
Export the environment variable:
declare -x ENV=XXX
Export the post-process name:
declare -x POST_PROCESS_NAME=XXX
Create the backup directory:
mkdir -pv /nfs/backup/${ENV}/IIM
Back up the full Installation Manager filesystem:
tar -C /opt/IBM -cvf - ./IIM ./IMShared | gzip > /nfs/backup/${ENV}/IIM/InstallationManager-full-backup-${POST_PROCESS_NAME}-${BACKUP_DATE_STAMP}.tar.gz