ReferenceCoreCLI Reference

CLI Reference

Find information about the Synnax Core CLI.

Start

The start command starts the Synnax Core.

Examples

Starting a Core

We can use the i and m flags to start a Core in insecure mode with an in-memory data store:

synnax start -l localhost:9090 -im

Flags

FlagDefaultDescription
--listen/-l"localhost:9090"
A reachable address and port to listen on for incoming client connections and RPCs from other nodes.
--peers/-p[]
A list of comma-separated peer Cores in an existing cluster. If this list is not empty, the Core will attempt to join the cluster by connecting to each peer in the list. If the list is empty and no existing cluster data is found, the Core will bootstrap a new cluster.
--data/-d"synnax-data"
The file path to the folder where Synnax will keep its data.
--verbose/-vfalse
Enables human-readable logging.
--insecure/-ifalse
Starts the node without TLS encryption. This is not recommended for production use.
--mem/-mfalse
Starts the node with an in-memory data store. In this mode, all data will kept in memory, will not be stored on disk, and will be lost when the node is restarted. This can be useful for testing and development, but is not recommended for production use.
--help/-hfalse
Prints the help message for the start command.
--config/c"/usr/local/synnax/config.yaml"
Path to a JSON, YAML, or TOML configuration file that can be used to set the node's configuration instead of using flags or environment variables. See Configuration Files for more information.
--auto-certfalse
Automatically generate self-signed certificates for the node.
--certs-dir"/usr/local/synnax/certs"
Path to the directory containing the TLS certificates for the node.
--ca-cert"ca.crt"
Path to the CA certificate file relative to `--certs-dir`.
--node-cert"node.crt"
Path to the node certificate file relative to `--certs-dir`.
--node-key"node.key"
Path to the node key file relative to `--certs-dir`.
--username"synnax"
Username for the database root user.
--password"seldon"
Password for the database root user.
--license-key""
License key to use Synnax outside of demo mode.
--debugfalse
Enables debug logging output. We recommend against using this in production, as it generates a very large amount of output.
--slow-consumer-timeout2500000000
The duration, in ns, after which a telemetry streamer will be closed by the Core if it stops receiving messages. It's rarely necessary to change this value. The default is 2.5s.
--no-driverfalse
Disables the embedded Synnax Driver for the Synnax Core. This is useful when you want to run Synnax without any device integration.
--disable-integrations[]
List of device integrations to disable. This is useful when you don't want particular integrations. All integrations are enabled by default. Options are: labjack, modbus, ni, opc, sequence
--enable-integrations[]
List of device integrations to enable. This is useful when you only want particular integrations. All integrations are enabled by default. Options are: labjack, modbus, ni, opc, sequence
--log-file-path"./synnax-logs/synnax.log"
The path to the file in which the Synnax Core should store its logs
--log-file-max-size50
The maximum size (in MB) before a log file gets rotated.
--log-file-max-backups5
The maximum number of log files that should be kept before they are deleted
--log-file-max-age30
The maximum age (in days) that log files should be kept before they are removed
--log-file-compressfalse
Whether to compress log files on disk.

Environment Variable Equivalents

The following environment variables can be used in place of the corresponding flags. Command line flags will take precedence over environment variables.

FlagEnvironment Variable
--listen/-lSYNNAX_LISTEN
--peers/-pSYNNAX_PEERS
--data/-dSYNNAX_DATA
--verbose/-vSYNNAX_VERBOSE
--insecure/-iSYNNAX_INSECURE
--mem/-mSYNNAX_MEM
--config/cSYNNAX_CONFIG
--certs-dirSYNNAX_CERTS_DIR
--ca-certSYNNAX_CA_CERT
--node-certSYNNAX_NODE_CERT
--node-keySYNNAX_NODE_KEY
--usernameSYNNAX_USERNAME
--passwordSYNNAX_PASSWORD
--license-keySYNNAX_LICENSE_KEY
--debugSYNNAX_DEBUG
--slow-consumer-timeoutSYNNAX_SLOW_CONSUMER_TIMEOUT
--no-driverSYNNAX_NO_DRIVER
--disable-integrationsSYNNAX_DISABLE_INTEGRATIONS
--enable-integrationsSYNNAX_ENABLE_INTEGRATIONS
--log-file-pathSYNNAX_LOG_FILE_PATH
--log-file-max-sizeSYNNAX_LOG_FILE_MAX_SIZE
--log-file-max-backupsSYNNAX_LOG_FILE_MAX_BACKUPS
--log-file-max-ageSYNNAX_LOG_FILE_MAX_AGE
--log-file-compressSYNNAX_LOG_FILE_COMPRESS

Configuration Files

Synnax will also read configuration files in JSON, TOML and YAML formats. The values set in these configuration files take the lowest precedence and will be overridden by any environment variables or command line flags.

By default, Synnax will look for a configuration file at ~/.synnax.yaml. You can specify a different configuration file using the --config flag or the SYNNAX_CONFIG environment variable.

Here are example configuration files in various formats:

Version

The version command prints the installed version of the Synnax database.

Examples

If you run this command:

synnax version

You’ll see output similar to the following:

Synnax version 0.47.0

Flags

This command has no flags.