Interacting with the vCenter Server Appliance 6.5/6.7/7.0 embedded vPostgres Database
search cancel

Interacting with the vCenter Server Appliance 6.5/6.7/7.0 embedded vPostgres Database

book

Article ID: 313597

calendar_today

Updated On:

Products

VMware vCenter Server

Issue/Introduction

The article provide steps to connect to the embedded vPostgres Database of a vCenter Server Appliance and check the size of the tables.
Caution: Ensure you have working backups and/or snapshots of the vCenter Server Appliance before interacting with the vCenter Server Appliance 6.5/6.7/7.0 Database.


Environment

VMware vCenter Server Appliance 6.5.x
VMware vCenter Server 6.7.x
VMware vCenter Server 7.0.x
VMware vCenter Server Appliance 6.7.x
VMware vCenter Server 6.5.x

Resolution

To connect to the embedded vPostgres Database of a vCenter Server Appliance 6.5/6.7/7.0:
  1. Log into the VCSA as root via SSH or Console.
  2. Type shell to switch to the BASH Shell.
  3. Connect to the VCDB by running this command from the vCenter Server Appliance 6.5/6.7/7.0 BASH Shell:
/opt/vmware/vpostgres/current/bin/psql -d VCDB -U postgres


Once in the postgres database, standard SQL query language can be used.
  • To list all tables, sequences, and views with size:
          \d+
  • To list all databases in the server run the following command:
\l+
 
  • To list top 20 tables by their size run the following command:
SELECT nspname || '.' || relname AS "relation", pg_size_pretty(pg_total_relation_size(C.oid)) AS "total_size"
FROM pg_class C
LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace)
WHERE nspname NOT IN ('pg_catalog', 'information_schema')
AND C.relkind <> 'i'
AND nspname !~ '^pg_toast'
ORDER BY pg_total_relation_size(C.oid) DESC
LIMIT 20;
  • Run this command to quit postgres:
\q


Additional Information

vCenter Server Appliance 6.5 の組み込み vPostgres データベースとのやりとり

与 vCenter Server Appliance 6.5 嵌入式 vPostgres 数据库交互