zato create odb

Overview

Creates a Zato Operational Database (ODB) - sets up all the SQL objects needed to support a Zato cluster, such as tables and indexes.

Depending on the database type, the database user will need to be granted rights required for creating SQL objects. It is recommended that during the command's execution, the user be the database's owner. These elevated privileges can be curtailed upon the command's successful completion.

Usage example

$ zato create odb \
    --odb-type postgresql \
    --odb-host localhost \
    --odb-port 5432 \
    --odb-user zato1 \
    --odb-db-name zatodb1 \
    --odb-password <password>
OK
$