Installing Yadle » SaaS » Starting and Stopping Yadle

The installer for the Yadle agent and agent-side microservices will generate scripts to stop and start the corresponding Docker containers with proper parameters.

Note:
  • If the host machine or VM that is running the Yadle agent and agent microservices is rebooted, the Docker containers will NOT automatically restart. You will need to complete the “Starting Yadle” procedure to bring everything back online.
  • All start and stop scripts must be run as root user.

Starting Yadle

Step 1: Start Yadle agent.

Go to agent install directory and run start_yadle script

$ cd /opt/yadle/agent
$ sudo ./start_yadle

Step 2: Start Yadle agent microservices.

Go to agent microservices install directory and run start_yadle script

$ cd /opt/yadle/microservices/agent
$ sudo ./start_yadle

Step 3: Check for running Yadle containers.

Confirm Yadle containers are running by checking Docker status.

$ sudo docker ps

The following containers should be listed in output:

NAMES
<org>_changes_mode_red-thumbnails_1
<org>_changes_mode_exif_1
<org>_changes_mode_ocr_1
<org>_changes_mode_video-thumbnails_1
<org>_changes_mode_medium-thumbnails_1
<org>_changes_mode_small-thumbnails_1
<org>_geo_changes_mode_geometry-thumbnails_1
<org>_yadle_agent         

Stopping Yadle

Step 1: Stop Yadle agent microservices.

Go to agent microservices install directory and run stop_yadle script

$ cd /opt/yadle/microservices/agent
$ sudo ./stop_yadle

Step 2: Stop Yadle agent.

Go to agent install directory and run stop_yadle script

$ cd /opt/yadle/agent
$ sudo ./stop_yadle

Step 3: Check for no running Yadle containers.

Confirm there are no running Yadle containers by checking Docker status. There should be no Yadle containers returned in the output. If you are running other containers on the same host machine as Yadle, those will still be running.

$ sudo docker ps