Back Up Ops Center Configuration
This section describes the procedure involved in creating a backup of the Ops Center configurations.
To perform a backup of the Ops Center configurations:
-
Log in to SMI Cluster Manager node as an ubuntu user.
-
Run the following command to backup the SMI Ops Center configuration to /home/ubuntu/smiops.backup file.
ssh -p <port_number> admin@$(kubectl get svc -n smi | grep '.*netconf.*<port_number>' | awk '{ print $4 }') "show run | nomore" > smiops.backup_$(date +'%m%d%Y_T%H%M')
NOTES:
-
ssh -p <port_number> : Specifies the port number of the system on which the SMI Ops Center service is running. Use the Kubectl get service command to display the ports on which is the services are running.
-
*netconf.*<port_number>' : Specifies the port number of the system on which the Netconf service is running.
-
-
Run the following command to backup the CEE Ops Center configuration to /home/ubuntu/ceeops.backup file.
ssh admin@<cee-vip> "show run | nomore" > ceeops.backup_$(date +'%m%d%Y_T%H%M')
NOTES:
-
cee-vip : Specifies the CEE VIP that is configured in the SMI Ops Center. Use the show running-config to display the SMI Ops Center configuration.
-
-
Run the following command to backup the PCF Ops Center configuration to /home/ubuntu/pcfops.backup file.
ssh admin@<pcf-vip> "show run | nomore" > pcfops.backup_$(date +'%m%d%Y_T%H%M')
NOTES:
-
pcf-vip> : Specifies the PCF VIP that is configured in the SMI Ops Center. Use the show running-config to display the SMI Ops Center configuration.
-