ESX Virtualization

VMware ESXi, vSphere, VMware Backup, Hyper-V... how-to, videos....

Nakivo Backup and Replication - #1 Backup solution for Virtual, physical, cloud, NAS and SaaS

Menu
  • Certification
      • VCP-DCV vSphere 8
          • vcp2024-125.
        • Close
    • Close
  • VMware
    • Configuration Maximums
    • vSphere
      • vSphere 8.0
      • vSphere 7.0
      • vSphere 6.7
      • vSphere 6.5
      • vSphere 6.0
      • Close
    • VMworld
      • VMware EXPLORE 2024
      • VMware EXPLORE 2023
      • VMware EXPLORE 2022
      • VMworld 2019
      • VMworld 2018
      • VMworld 2017
      • VMworld 2016
      • VMworld 2015
      • VMworld 2014
      • VMworld 2013
      • VMworld 2012
      • VMworld 2011
      • Close
    • Close
  • Microsoft
    • Windows Server 2012
    • Windows Server 2016
    • Windows Server 2019
    • Close
  • Categories
    • Tips – VMware, Microsoft and General IT tips and definitions, What is this?, How this works?
    • Server Virtualization – VMware ESXi, ESXi Free Hypervizor, VMware vSphere Server Virtualization, VMware Cloud and Datacenter Virtualization
    • Backup – Virtualization Backup Solutions, VMware vSphere Backup and ESXi backup solutions.
    • Desktop Virtualization – Desktop Virtualization, VMware Workstation, VMware Fusion, VMware Horizon View, tips and tutorials
    • How To – ESXi Tutorials, IT and virtualization tutorials, VMware ESXi 4.x, ESXi 5.x and VMware vSphere. VMware Workstation and other IT tutorials.
    • Free – Free virtualization utilities, ESXi Free, Monitoring and free backup utilities for ESXi and Hyper-V. Free IT tools.
    • Videos – VMware Virtualization Videos, VMware ESXi Videos, ESXi 4.x, ESXi 5.x tips and videos.
    • Home Lab
    • Reviews – Virtualization Software and reviews, Disaster and backup recovery software reviews. Virtual infrastructure monitoring software review.
    • Close
  • Partners
    • NAKIVO
    • StarWind
    • Zerto
    • Xorux
    • Close
  • This Web
    • News
    • ESXi Lab
    • About
    • Advertise
    • Archives
    • Disclaimer
    • PDFs and Books
    • Close
  • Free
  • Privacy policy

How-to backup and restore VCSA 5.5 internal database

By Vladan SEGET | Last Updated: January 6, 2018

Shares

vCenter server appliance (Linux) version 5.5 increased the limits for its internal vPostgress DB now supporting up to 100 hosts and 3000 VMs. Soft limit, but enabling the usage and deployment scenarios at the client's sites. Clients which are OK with the fact that their vCenter is not on Windows. There are some questions which should be asked. Here is the first one…. How-to backup and restore VCSA 5.5 internal database?

Full backup/restore are usually possible through backup products, which relays on vCenter as a central point of management of your virtual infrastructure. Newest releases of backup products can restore (and backup) vCenter without workarounds – example of Veeam, which hasn't confirmed the inter-operability with vSphere 5.5 just yet, but they are fast and they'll do it pretty soon I'm sure. (BTW, If you're running v7.0 don't forget to checkout the Patch 1 for Veeam 7.0 released recently).

How-to backup and restore VCSA 5.5 internal database?

The reply was found in the VMware KB article 2034505 and I tried it in my lab, so I though that documenting it would also help others.

1. First connect to the VCSA 5.5 Linux appliance via SSH (Putty for example) with login/password. If you haven't changed the default login root and password is vmware

2. Then go to the vPostgress directory with this command:

cd /opt/vmware/vpostgres/1.0/bin

 3. Run this command for backup of the VCSA 5.5 Database:

./pg_dump EMB_DB_INSTANCE -U EMB_DB_USER -Fp -c > VCDBBackupFile

Note: VCDBBackupFile is the database backup file.

4. You'll need a password for the EMB_DB_USER account. You can find it in this location:

/etc/vmware-vpx/embedded_db.cfg

The vCenter Server Appliance database configuration file

5. To Restore, use this command:

PGPASSWORD=EMB_DB_PASSWORD ./psql -d EMB_DB_INSTANCE -Upostgres -f VCDBBackupFile

In addition, I found a blog article which provides script (not tested) on automating the whole process on daily basis (via crontab). The article can be found here.

While it's certainly good start, for users who do not have Linux experience, the process might still be difficult. It would certainly be a good idea to have some kind of utility (a Fling?) which would be able to initiate the backup of the VCSA 5.5 db remotely from a management station for example.

I would imaging having a separate appliance (or small Widnows executable ) which would handle remotely the connection to VCSA 5.5 (perhaps also other products….. hint, hint..) and the configuration and backup/restore process through a web based interface.

What's your thoughts? Are you find just with that VMware KB? Do you prefer easier method? Post your reactions in the comment section! Share this article.

Source: VMware KB article 2034505

Shares
Vote !

| Filed Under: Backup Tagged With: How-to backup and restore VCSA 5.5 internal database

About Vladan SEGET

This website is maintained by Vladan SEGET. Vladan is as an Independent consultant, professional blogger, vExpert x16, Veeam Vanguard x9, VCAP-DCA/DCD, ESX Virtualization site has started as a simple bookmarking site, but quickly found a large following of readers and subscribers.

Connect on: Facebook. Feel free to network via Twitter @vladan.

Comments

  1. Cedric Megroz says

    October 1, 2013 at 11:55 am

    Hi,
    Thanks for this information, but a little thing to correct.
    With the vPostgress internal database the maximum of supported hosts is 100 not 300.
    Finded on the Maximum configuration guide.
    vCenter Server Appliance
    Hosts (with embedded vPostgres database) 100
    Virtual machines (with embedd
    ed vPostgres database) 3000
    Hosts (with Oracle database) 1000
    Virtual machines (with Oracle database) 10000

    Gr

    • Vladan SEGET says

      October 1, 2013 at 12:42 pm

      True, I don’t have idea where I went for this number.

      Thanks Cedric for pointing this out.
      The article got corrected.

  2. Calin C. says

    October 25, 2013 at 10:30 pm

    Thanks for putting together this straightforward way to backup the internal database. As to your questions, giving the fact that I use this method for my test lab, it’s enough for now.
    I’m sure that it will not scale if you need to deal with such method daily. Some piece of code that can do it automatically (and for beginners some GUI) would be welcomed, but I’m not aware of such thing.

  3. Ben says

    June 4, 2014 at 3:34 pm

    Any way to connect to this database remotely?

  4. Fábio says

    December 12, 2014 at 1:22 pm

    Please,

    Help-me.

    PGPASSWORD=EMB_DB_PASSWORD ./psql -d EMB_DB_INSTANCE -Upostgres -f VCDBBackupFile

    psql.bin: could not connect to server: Connection refused
    Is the server running locally and accepting
    connections on Unix domain socket “/tmp/.s.PGSQL.5432”?

  5. Prudhvi says

    June 11, 2020 at 9:28 pm

    With this backup can we restore the vcenter server with existing inventory details

    • Vladan SEGET says

      June 12, 2020 at 7:35 am

      Hi, It’s an old post, concerning vSphere 5.5…

Private Sponsors

Featured

  • Thinking about HCI? G2, an independent tech solutions peer review platform, has published its Winter 2023 Reports on Hyperconverged Infrastructure (HCI) Solutions.
  • Zerto: One Platform for Disaster Recovery, Backup & Cloud Mobility: Try FREE Hands-On Labs Today!
Click to Become a Sponsor

Most Recent

  • Veeam Backup & Replication v13 Beta: A Game-Changer with Linux
  • What is Veeam Data Cloud Vault and how it can help SMBs
  • Nakivo Backup and Replication – Malware Scan Feature
  • Zerto 10 U7 released with VMware NSX 4.2 Support
  • XorMon NG 1.9.0 Infrastructure Monitoring – now also with Veeam Backup Support
  • Heartbeat vs Node Majority StarWind VSAN Failover Strategy
  • Vulnerability in your VMs – VMware Tools Update
  • FREE version of StarWind VSAN vs Trial of Full version
  • Commvault’s Innovations at RSA Conference 2025 San Francisco
  • VMware ESXi FREE is FREE again!

Get new posts by email:

 

 

 

 

Support us on Ko-Fi

 

 

Buy Me a Coffee at ko-fi.com

Sponsors

Free Trials

  • DC Scope for VMware vSphere – optimization, capacity planning, and cost management. Download FREE Trial Here.
  • Augmented Inline Deduplication, Altaro VM Backup v9 For #VMware and #Hyper-V – Grab your copy now download TRIAL.

VMware Engineer Jobs

VMware Engineer Jobs

YouTube

…

Find us on Facebook

ESX Virtualization

…

Copyright © 2025 ·Dynamik-Gen · Genesis Framework · Log in