Difference between revisions of "Les"

From truxwiki.com
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
 
If Les is not running somewhere, loads will not complete.
 
If Les is not running somewhere, loads will not complete.
 
They will get stuck at [[ETL Stages#ETLs and Their Stages|48-60%]].
 
They will get stuck at [[ETL Stages#ETLs and Their Stages|48-60%]].
 +
 +
In the Windows Services control panel app, Les will appear as "Truxton Monitor (Les)" and can be controlled from there.
 +
To start Les, execute this in a command window:
 +
<source lang="bat">
 +
net start les
 +
</source>
 +
 +
To stop Les:
 +
<source lang="bat">
 +
net stop les
 +
</source>
 +
 +
To disable Les:
 +
<source lang="bat">
 +
sc config "Les" start=disabled
 +
</source>
 +
 +
To re-enable Les:
 +
<source lang="bat">
 +
sc config "Les" start=auto
 +
</source>

Latest revision as of 07:50, 2 August 2023

The Truxton Load Status Monitor (Les) is a service that runs on the network that monitors the message bus and decides when media is ready to advance. There only needs to be one instance of Les running on the network, not on every machine. If there are multiple Les processes on the network, they will take a vote to see which process should be the Chosen One because there can be only one process in charge at a time.

If Les is not running somewhere, loads will not complete. They will get stuck at 48-60%.

In the Windows Services control panel app, Les will appear as "Truxton Monitor (Les)" and can be controlled from there. To start Les, execute this in a command window:

net start les

To stop Les:

net stop les

To disable Les:

sc config "Les" start=disabled

To re-enable Les:

sc config "Les" start=auto