Standalone Driver

Deploy the standalone driver on a separate machine from the cluster.

The standalone driver makes it possible to integrate data acquisition hardware from multiple host machines into a single Synnax deployment.

To get started, you’ll need to install the Synnax standalone driver. Choose your operating system below to see the installation instructions:

To connect to a cluster, you’ll need to know the cluster’s IP address, port, username, and password. Then run the synnax-driver login command:

synnax-driver login

This will prompt you to enter the cluster’s connection parameters. Once you’ve entered the parameters, the driver will automatically connect to the cluster. Here’s an example of the output:

synnax-driver login
host (default: localhost): 10.0.0.45
port (default: 9090): 9090
username: synnax
password:
I20250318 04:57:06.681439 25261 login.cpp:47] connecting to Synnax at 10.0.0.45:9090
I20250318 04:57:06.792840 25261 login.cpp:53] successfully logged in!
I20250318 04:57:06.793918 25261 login.cpp:59] credentials saved successfully

As a final step, you can check the driver’s status by running the synnax-driver status command:

synnax-driver status

This will print the driver’s status to the console. Here’s an example of the output:

I20250318 05:07:04.312907  5935 daemon_nilinuxrt.cpp:490] Checking service status
I20250318 05:07:04.346398  5937 version.cpp:21] Synnax Driver v0.39.0 (2025-03-16 00:08:18)
Synnax Driver is running (PID: 28191)

CLI Reference

Start

The start command starts the driver as a background process on the host machine.

Example Usage

synnax-driver start

To start the driver as a foreground process, use the --standalone flag:

synnax-driver start --standalone

Flags

FlagDefaultDescription
--standalone/-sfalse
Run the driver directly within the terminal process.

Stop

The stop command stops the driver.

Example Usage

synnax-driver stop

Restart

The restart command restarts the driver. This is equivalent to stopping and then starting the driver.

Example Usage

synnax-driver restart

Login

The login command logs in to a Synnax cluster.

Example Usage

synnax-driver login

This will prompt you to enter the cluster’s connection parameters. Once you’ve entered the parameters, the driver will automatically connect to the cluster. Here’s an example of the output:

synnax-driver login
host (default: localhost): 10.0.0.45
port (default: 9090): 9090
username: synnax
password:

Status

The status command prints the driver’s status to the console.

Example Usage

synnax-driver status

Uninstall

The uninstall command uninstalls the driver.

Example Usage

synnax-driver uninstall

Logs

The logs command prints the driver’s logs to the console.

Example Usage

synnax-driver logs

Version

The version command prints the driver’s version to the console.

Example Usage

synnax-driver version