Manta Manager CLI ================= The Manta Manager can be deployed using the command below with the appropriate options: .. code:: console $ manta_manager --help usage: manta_manager [-h] [--version] [--host HOST] [--port PORT] [--db_host DB_HOST] [--db_port DB_PORT] [--mqtt_host MQTT_HOST] [--mqtt_port MQTT_PORT] [--log_filename LOG_FILENAME] [--secured] [--ca_port CA_PORT] [--debug] [--verbose] optional arguments: <...> Explanation of the options .. list-table:: :widths: 20 80 :header-rows: 1 * - Flag - Description * - :code:`--host` - Manager gRPC Host (default: localhost) * - :code:`--port` - Manager gRPC Port (default: 50051) * - :code:`--db_host` - Database Host (default: localhost) * - :code:`--db_port` - Database Port (default: 27017) * - :code:`--mqtt_host` - MQTT Broker Host (default: localhost) * - :code:`--mqtt_port` - MQTT Broker Port (default: 1883) * - :code:`--log_filename` - Log filename (optional) * - :code:`--secured` - Use this option to enable secured mode (more details below). * - :code:`--ca_port` - Port for the Certification Authority (required only in secured mode). * - :code:`--debug, -d` - Debug mode - All logs are printed and saved into a file. * - :code:`-v` - Increases the verbosity of logs. Use :code:`-v`, :code:`-vv`, or :code:`-vvv` to increase the verbosity level.