Skip to content

Commit

Permalink
Fixed apache#210
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Warneke committed Oct 14, 2011
1 parent 7e23536 commit 661f93c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion stratosphere-dist/src/main/assemblies/bin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<id>bin</id>
<formats>
<format>dir</format>
<format>tar.gz</format>
<format>tar.gz</format>
<format>zip</format>
</formats>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ DEFAULT_NEPHELE_JM_HEAP=256
# The default Java heap size for the Nephele Task Manager in MB
DEFAULT_NEPHELE_TM_HEAP=512

# Optional Nephele parameters
#NEPHELE_OPTS=""

# Optional Nephele SSH parameters
#NEPHELE_SSH_OPTS=""

# Resolve links
this="$0"
while [ -h "$this" ]; do
Expand Down Expand Up @@ -66,10 +72,6 @@ NEPHELE_BIN_DIR=$NEPHELE_ROOT_DIR/bin
NEPHELE_LIB_DIR=$NEPHELE_ROOT_DIR/lib
NEPHELE_LOG_DIR=$NEPHELE_ROOT_DIR/log

# calling options
NEPHELE_OPTS=""
#NEPHELE_OPTS=

# arguments for the JVM. Used for job manager and task manager JVMs
# DO NOT USE FOR MEMORY SETTINGS! Use DEFAULT_NEPHELE_JM_HEAP and
# DEFAULT_NEPHELE_TM_HEAP for that!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ $NEPHELE_BIN_DIR/nephele-jobmanager.sh start cluster
while read line
do
HOST=$( extractHostName $line)
ssh $NEPELE_E_SSH_OPTS $HOST nohup /bin/bash $NEPHELE_BIN_DIR/nephele-taskmanager.sh start &
ssh -n $NEPHELE_SSH_OPTS $HOST -- "nohup /bin/bash $NEPHELE_BIN_DIR/nephele-taskmanager.sh start &"
done < $HOSTLIST
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ $NEPHELE_BIN_DIR/nephele-jobmanager.sh stop
while read line
do
HOST=$( extractHostName $line)
ssh $NEPHELE_SSH_OPTS $HOST nohup /bin/bash $NEPHELE_BIN_DIR/nephele-taskmanager.sh stop &
ssh -n $NEPHELE_SSH_OPTS $HOST -- "nohup /bin/bash $NEPHELE_BIN_DIR/nephele-taskmanager.sh stop &"
done < $HOSTLIST

0 comments on commit 661f93c

Please sign in to comment.