vRealize Orchestrator 7.5 does not have an upgrade path from prior versions, but there is a migration process to migrate from an older version to a new deployment. A quick overview of the migration process, from the VMware Docs:
Deploy and configure your new vRealize Orchestrator 7.5 environment.
Stop the source Orchestrator services.
Enable SSH access for each node in the source and target environments.
Ensure that the source Orchestrator database is accessible from the target Orchestrator environment.
Back up the source Orchestrator database, including the database schema.
Complete all workflows in the source Orchestrator environment that are in the running or waiting for input states. Workflows in these states are market as failed after migration to the target environment.
Once the vRO 7.5 OVA is deployed, SSH can be enabled in the VAMI
Or in the console by running these commands:
The service on the source Orchestrator can be stopped by running:
I was migrating from the vRO 7.3 appliance with the embedded PostgreSQL database. By default the database cannot be accessed over the network. I didn’t see any details on how to make the source Orchestrator database available in this scenario and at first I didn’t realize that this was the case. The initial migration check failed to validate the source vRealize Orchestrator database:
Using netstat I confirmed that the database was only listening on the localhost IP address, 127.0.0.0:
After searching for information on PostgreSQL configuration, I later found that this is actually partly addressed later in the docs under Troubleshooting the Orchestrator Migration.
I added the line:
listen_addresses = '*'
to the file /var/vmware/vpostgres/current/pgdata/postgresql.conf and restarted the vpostgres service:
With this done, netstat confirmed that it was now listening on all IP addresses.
Interestingly, after this is done the migration check will give you a slightly more detailed error message with instructions to add a line to /var/vmware/vpostgres/current/pgdata/pg_hba.conf:
host all all <IP address>/32 md5
After editing the second file restart the vpostgres service again and with all the PostgreSQL configuration done for remote access the migration check looks good.
It runs through the migration process.
I also watched the migration log on the new appliance.
With the migration complete it gives you some post migration steps, including a link to the VMware Docs with more information on the post migration.
One thing worth noting is that LDAP authentication is no longer available. If the old/source Orchestrator was using LDAP for authentication that will need to be re-configured to use vSphere or vRA.
The vCenter Event Broker Appliance is a new VMware Fling and open source project that was recently released at VMworld Europe. Using OpenFaaS and its vCente...
The recent release of vRealize Automation 8.0 comes with a vastly simplified installation process and architecture. The Windows based IaaS servers have been...
This is another strange problem that I experienced recently. Restarting the Profile-Driven Storage service fixed all the errors, but diagnosing them was not...
I had a couple of exciting months after upgrading all of my vSphere environments to 6.7 Update 1. There are two separate bugs in the qfle3 drivers that caus...
Comments