Difference between revisions of "Les"
Jump to navigation
Jump to search
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| − | The Truxton Load Status Monitor (Les) is a service that runs on the network that monitors the [[Message Bus|message bus]] and decides when media is ready to advance. | + | The Truxton Load Status Monitor (Les) is a service that runs on the network that monitors the [[Message Bus|message bus]] and decides when media is ready to [[ETL Stages|advance]]. |
There only needs to be one instance of Les running on the network, not on every machine. | 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 [https://en.wikipedia.org/wiki/Kung_Pow!_Enter_the_Fist#Plot Chosen One] because [https://en.wikipedia.org/wiki/Highlander_(franchise)#Highlander_(1986) there can be only one] process in charge at a time. | If there are multiple Les processes on the network, they will take a vote to see which process should be the [https://en.wikipedia.org/wiki/Kung_Pow!_Enter_the_Fist#Plot Chosen One] because [https://en.wikipedia.org/wiki/Highlander_(franchise)#Highlander_(1986) there can be only one] process in charge at a time. | ||
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 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