Friday, April 24, 2020

vCenter IP or FQDN change Updation on vCloud Usage Meter 3.6.x

Recently customer had a issue where they have changes the vCenter IP address and after making the old vCenter endpoint as inactive is Usage Meter .Once the Changes have done we tried to add the vCenter and it adds successfully as per the collector logs but we were unable to see the vCenter with the new IP address.

We later found that the old vCenter has the same instance UUID of the New vCenter IP address cache in the Usage Meter DB causing the issue.

In order to resolve the issue we had to replace the FQDN or IP address on the Usage Meter database table with the new vCenter IP address .

vCenter with old IP address is highlighted in the screenshot below after making its as inactive






catalina logs

[ERROR] [04/23/2020 15:49:46.151] [default-akka.actor.default-dispatcher-19] [akka://default/user/vcenterSaver] Exception while executing statement : ERROR:
duplicate key value violates unique constraint "VcServer_instanceUuid"
Detail: Key ("instanceUuid")=(DFD348D4-93A6-47E5-B681-E1B39DB2D3D3) already exists.errorCode: 0, sqlState: 23505

Resolution:


sql   -- > command to access the DB

psql.bin (9.5.7 (VMware Postgres 9.5.7.0-5604358 release))
Type "help" for help.

usgmtr=> select * from "VcServer";

usgmtr=> Select host, id FROM "VcServer";
     host      | id
---------------+----
 10.200.51.225 |  2
 10.200.18.250 |  4
 10.210.0.105  |  3
 10.200.102.5  |  5
 10.200.51.240 |  1
(5 rows)

usgmtr=> UPDATE "VcServer" SET host = '10.200.101.5' WHERE id = 5;
UPDATE 1

usgmtr=> Select host, id FROM "VcServer";
     host      | id
---------------+----
 10.200.51.225 |  2
 10.200.18.250 |  4
 10.210.0.105  |  3
 10.200.51.240 |  1
 10.200.101.5  |  5
(5 rows)

usgmtr=> \q

usgmtr# service tomcat restart
usgmtr# service vpostgres restart

Saturday, April 18, 2020

How to Find the installation date of vCloud Usage Meter 3.6.x

I had question from one of the customer is there any way or a possibility to find the installation date of the usage meter.

Actually it is  possible from the 3.6.x - um.log should contain the initial boot-up instance along with the date and timestamp.

Try the following command

cat /var/log/usgmtr/um.log | grep liftweb.Boot 
2020-02-27 10:29:56,878  INFO [localhost-startStop-1] liftweb.Boot: VMware vCloud Usage Meter 3.6.1 Build 7359407 starting

vCloud Director 10 unable to register with Usage Meter 3.6.1 HP3

I had a issue registering vCloud director 10 with Usage Meter 3.6.1 HP3


Error : Service Unavailable







  •  Checked on the compatibility guide the versions  is supported
  • Port 443 is open even (customer had a firewall between them but firewall doesn’t seems to be a issues)



Found out there is know issue with vCloud director v10. If you disable the provider access to the legacy API login endpoint, all API integrations that rely on the system administrator login stop working, including vCloud Usage Meter and vCloud Availability for vCloud Director

Workaround:


  • Re-enable the service provider access to the legacy /api/sessions  endpoint by using the cell management tool.
  • To enable the provider access to the /api/sessions API endpoint, run the following command on the vCloud Direcotor
  • /opt/vmware/vcloud-director/bin/cell-management-tool manage-config -n vcloud.api.legacy.nonprovideronly -v false


Below are some documentation for your perusal


Replacing vROPS Certificates

Issue:  When using default certificates in vROPS  Due to security requirements it was necessary to replace the default self-signed certifica...