CFOPS Breaks in the Ops Manager
search cancel

CFOPS Breaks in the Ops Manager

book

Article ID: 293502

calendar_today

Updated On:

Products

Operations Manager

Issue/Introduction

Symptoms:

Operations (Ops) Manager 1.9.5 changed the way it exports the installation settings as described in this documentation. In Pivotal Cloud Foundry (PCF) 1.9.5, it does not export the releases and this will cause CFOPS restore to fail.

Note- Pivotal does not recommend upgrading or installing Pivotal Operations Manager 1.9.5. Release version 1.9.5 has been removed from the Pivotal Network to prevent anyone from installing it. If you have upgraded or installed 1.9.5 then we recommend moving to 1.9.6 immediately.

 

Environment


Resolution

When you are Upgrading PCF from 1.9.5:

  1. Post upgrade of Operations Manager, download all of the tile releases from Pivotal Network.
  2. Create a folder in Operations Manager home directory:
    ssh Operations Manager mkdir ~/releases
    
  3. Upload the .pivotal release to Operations Manager VI SCP:
    scp *.pivotal ubuntu@opsman:releases
    
  4. SSH into Operations Manager and CD into the ~/releases/ folder:
  5. Rename all of the .pivotal to .zip:
    ls *.pivotal | while read line; do file=`echo $line | awk -F "." '{print $1}'`; mv $line ${file}.zip; done
    
  6. Unzip all the tiles into /var/tempest/releases:
    unzip *.zip -d /var/tempest/releases
    
  7. Delete the /home/ubuntu/releases directory you created in step 2.