Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DES_documentation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CSS-PUBLIC
DES_documentation
Commits
1b8dbce2
Commit
1b8dbce2
authored
5 years ago
by
Armin Costa
Browse files
Options
Downloads
Patches
Plain Diff
Update Configuration.md
parent
5f5e38c2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Configuration.md
+20
-3
20 additions, 3 deletions
Configuration.md
with
20 additions
and
3 deletions
Configuration.md
+
20
−
3
View file @
1b8dbce2
...
@@ -115,7 +115,7 @@ In the DES processor operation declarations the authentication entry can be refe
...
@@ -115,7 +115,7 @@ In the DES processor operation declarations the authentication entry can be refe
## Start
of
a DES instance ##
## Start a DES instance ##
1.
Edit the ./config/DistributionServer.ini to fit your environment
1.
Edit the ./config/DistributionServer.ini to fit your environment
...
@@ -129,7 +129,7 @@ java -jar DES.jar –h
...
@@ -129,7 +129,7 @@ java -jar DES.jar –h
## Operation modes ##
##
#
Operation modes ##
#
1) Start a DES instance with default configuration defined in DES.ini and run all Processors (
*
.processor_config.xml files) located in CONFIG_PATH
1) Start a DES instance with default configuration defined in DES.ini and run all Processors (
*
.processor_config.xml files) located in CONFIG_PATH
...
@@ -158,8 +158,25 @@ java -jar DES.jar -c ./config/DES_test.ini
...
@@ -158,8 +158,25 @@ java -jar DES.jar -c ./config/DES_test.ini
```
```
java -jar DES.jar -c ./config/DES_test.ini -p yourtest.processor_config.xml
java -jar DES.jar -c ./config/DES_test.ini -p yourtest.processor_config.xml
```
```
### Passing command line startup variables to be referenced in DES Processor ###
Custom arguments can be passed to the startup command line
```
java -jar DES.jar -v HOSTNAME=des.yourdomain -v IP=192.168.2.2
```
The defined variables can than be referenced in a given Processor definition with the '@' reference (eg. @HOSTNAME)
```
xml
<Task
name=
"testCmd"
type=
"cmd"
active=
"no"
priority=
"NORM"
>
<EMail>
support.rs@eurac.edu
</EMail>
<NotifyEmail>
false
</NotifyEmail>
<Command>
ping
</Command>
<Parameter>
@HOSTNAME
</Parameter>
</Task>
```
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment