Mantis - Resin
Viewing Issue Advanced Details
4789 minor always 10-06-11 15:57 06-18-12 14:22
alex  
ferg  
normal  
closed 4.0.23  
fixed  
none    
none 4.0.29  
0004789: /resin-admin
with 4 servers configured and started as per below. dyn1 gets an index of 5, but

/resin-admin combox server select indexes it as 4: https://debosx:8443/resin-admin/index.php?q=health&s=4 [^]


#!/bin/bash

conf='conf/resin.xml'
servers="a b c d web-a"

pause=""
for server in $servers; do
    echo "starting server $server"
    command="bin/resin.sh -conf $conf -server $server start"
    $command
    if [ -z "$pause" ]; then
    sleep 3
    pause="done"
    fi
done

command="bin/resin.sh -conf $conf -server dyn1 -join-cluster app-tier start"
$command

There are no notes attached to this issue.