Skip to content
Snippets Groups Projects
Commit 551c2660 authored by Armin Costa's avatar Armin Costa
Browse files

Update Configuration.md

parent 8908cec7
No related branches found
No related tags found
No related merge requests found
......@@ -116,6 +116,39 @@ In the DES processor operation declarations the authentication entry can be refe
2. Create the set of *.processor_config.xml files that you want to run and place them in the path CONFIG_FILE_PATH as defined in DistributionServer.ini config file
3. Choose a suitable operation mode
print program arguments:
```
java -jar DES.jar –h
```
### Operation modes ###
*Start a DES instance with default configuration defined in DES.ini and run all Processors (*.processor_config.xml files) located in CONFIG_PATH
```
java -jar DES.jar
```
*Start a DES instance with default configuration defined in DES.ini and run a single Processor
```
java -jar DES.jar -p yourtest.processor_config.xml
```
*Start a DES instance with a different configuration (eg. DES_test.ini) and run all Processors (*.processor_config.xml files) located in CONFIG_PATH
```
java -jar DES.jar -c ./config/DES_test.ini
```
*Start a DES instance with a different configuration (eg. DES_test.ini) and run a given Processor
```
java -jar DES.jar -c ./config/DES_test.ini -p yourtest.processor_config.xml
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment