Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
remote_execution_feature [2024/10/23 15:23]
admin
remote_execution_feature [2024/10/23 16:08] (current)
admin
Line 5: Line 5:
 To configure the coordinator,​ navigate to a directory where you have write permissions and execute the following command: To configure the coordinator,​ navigate to a directory where you have write permissions and execute the following command:
  
-<​code>​c:​\Program Files\Dinamica EGO 8\DinamicaCoordinator ​--address X.X.X.X --port YYYY</​code>​+**Windows** 
 +<​code>​c:​\Program Files\Dinamica EGO 8\DinamicaCoordinator8 --address X.X.X.X --port YYYY</​code>​ 
 + 
 +**Linux** 
 +<​code>​./​DinamicaEGO-810-Ubuntu-LTS.AppImage --coordinator ​--address X.X.X.X --port YYYY</​code>​
  
 Replace ''​X.X.X.X''​ with the IP address of the machine that will serve as the coordinator,​ and ''​YYYY''​ with the port number where it will listen for incoming connections. This machine will act as the coordinator,​ responsible for managing and distributing tasks to connected agents. Replace ''​X.X.X.X''​ with the IP address of the machine that will serve as the coordinator,​ and ''​YYYY''​ with the port number where it will listen for incoming connections. This machine will act as the coordinator,​ responsible for managing and distributing tasks to connected agents.
 +
 +The Dinamica Coordinator supports various parameters, which can be viewed by running the following commands:
 +
 +**Windows**
 +<​code>​c:​\Program Files\Dinamica EGO 8\DinamicaCoordinator8 --help</​code>​
 +
 +**Linux**
 +<​code>​./​DinamicaEGO-810-Ubuntu-LTS.AppImage --coordinator --help</​code>​
  
 ===== Agent Setup ===== ===== Agent Setup =====
Line 13: Line 25:
 To configure an agent, navigate to a directory where you have write permissions and run: To configure an agent, navigate to a directory where you have write permissions and run:
  
 +**Windows**
 <​code>​c:​\Program Files\Dinamica EGO 8\DinamicaAgent --address X.X.X.X --port YYYY</​code>​ <​code>​c:​\Program Files\Dinamica EGO 8\DinamicaAgent --address X.X.X.X --port YYYY</​code>​
 +
 +**Linux**
 +<​code>​./​DinamicaEGO-810-Ubuntu-LTS.AppImage --agent --address X.X.X.X --port YYYY</​code>​
  
 Here, ''​X.X.X.X''​ should be the IP address of the coordinator,​ and ''​YYYY''​ is the port number used by the coordinator to communicate with agents. The machine running this command will function as an agent, executing tasks assigned by the coordinator. You can deploy agents on multiple machines to expand the processing capacity. Agents can also be run on the same machine as the coordinator,​ but this is not recommended if the agent'​s tasks are computationally intensive. Here, ''​X.X.X.X''​ should be the IP address of the coordinator,​ and ''​YYYY''​ is the port number used by the coordinator to communicate with agents. The machine running this command will function as an agent, executing tasks assigned by the coordinator. You can deploy agents on multiple machines to expand the processing capacity. Agents can also be run on the same machine as the coordinator,​ but this is not recommended if the agent'​s tasks are computationally intensive.
 +
 +The Dinamica Agent supports various parameters, which can be viewed by running the following commands:
 +
 +**Windows**
 +<​code>​c:​\Program Files\Dinamica EGO 8\DinamicaAgent --help</​code>​
 +
 +**Linux**
 +<​code>​./​DinamicaEGO-810-Ubuntu-LTS.AppImage --agent --help</​code>​
  
 ===== Running Parts of a Model Remotely ===== ===== Running Parts of a Model Remotely =====