Difference between revisions of "VCenter Upgrade options for small sized vCenter deployments missing"

From Peter Pap's Technowiki
Jump to: navigation, search
(Created page with "So you've got the Migration Assistant to start and now you're half way through the migration assistant before you get this: File:Vmwarex-largeonly.png The ONLY option av...")
 
Line 1: Line 1:
 
So you've got the Migration Assistant to start and now you're half way through the migration assistant before you get this:
 
So you've got the Migration Assistant to start and now you're half way through the migration assistant before you get this:
  
[[File:Vmwarex-largeonly.png]]
+
<gallery>
 +
File:Vmwarex-largeonly.png
 +
</gallery>
  
 
The ONLY option available to you is the "X-Large" deployment size.  This is obviously less than ideal if you only want a small one!  In my case, the issue was Postgres logs.   
 
The ONLY option available to you is the "X-Large" deployment size.  This is obviously less than ideal if you only want a small one!  In my case, the issue was Postgres logs.   

Revision as of 05:47, 27 February 2018

So you've got the Migration Assistant to start and now you're half way through the migration assistant before you get this:

The ONLY option available to you is the "X-Large" deployment size. This is obviously less than ideal if you only want a small one! In my case, the issue was Postgres logs.

1. Log into the vCenter host via SSH and go to /storage/db/vpostgres/pg_log

2. Delete anything older than 30 days

  find . -mtime +30 -exec rm {} \;

That was enough to convince the Upgrade utility that I could have a smaller one :-)