Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. From a command prompt, run the Chariot service start script in the directory where the service was installed.
    For Chariot versions prior to 2.4.1

    Code Block
    /etc/init.d/chariot start

    For Chariot versions 2.4.1 and newer 

    Code Block
    systemctl start chariot


  2. Verify the Chariot service is running. From a command prompt, run the Chariot service status script in the directory where the service was installed.

    Code Block
    ./status.sh

    The status returned will be: INSTALLED, NOT INSTALLED or RUNNING.

    Additionally the Chariot MQTT Server Web UI can be accessed on port 8080. Navigate to the server's URL in a browser and verify that the EULA page is shown.

Anchor
Stopping
Stopping
Stopping the Chariot MQTT Server

From a command prompt, run the Chariot service stop script in the directory where the service was installed.
For Chariot versions prior to 2.4.1

Code Block
/etc/init.d/chariot stop

For Chariot version 2.4.1 and newer

Code Block
systemctl stop chariot


Anchor
Restart
Restart
Restarting the Chariot MQTT Server

From a command prompt, run the Chariot service restart script in the directory where the service was installed

For Chariot versions prior to 2.4.1

Code Block
/etc/init.d/chariot restart

For Chariot versions 2.4.1 and newer

Code Block
systemctl restart chariot


Anchor
Uninstalling
Uninstalling
Uninstalling the Chariot MQTT Server

  1. From a command prompt, run the Chariot service uninstall script in the directory where the service was installed.

...