In this example we have
three different domain , two SLSs and four allowed clients.
The configurarion should be:
MASTER SERVER (istriceMS_conf.xml)
|
<?xml
version="1.0" encoding="UTF-8"?>
<MasterServer
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="msSchema.xsd">
<Info>
<QoSPolicy> BALANCED
</QoSPolicy>
<QosRecovery> false
</QosRecovery>
<socketChannelPort> 11701
</socketChannelPort>
<Remark> NONE </Remark>
</Info>
<Clients>
<Client>
<host>
client1.domain1 </host>
<Remark>
NONE </Remark>
</Client>
<Client>
<host>
client2.domain1 </host>
<Remark>
NONE </Remark>
</Client>
<Client>
<host>
client.domain2 </host>
<Remark>
NONE </Remark>
</Client>
<Client>
<host>
client.domain3 </host>
<Remark>
NONE </Remark>
</Client>
</Clients>
<SLSs>
<SLS>
<host> sls.domain1
</host>
<maxTasks> 4 </maxTasks>
<maxLoad> 1.4 </maxLoad>
<nice> LOW </nice>
</SLS>
<SLS>
<host> sls.domain2
</host>
<maxTasks> 2 </maxTasks>
<maxLoad> 1.0 </maxLoad>
<nice>LOW </nice>
</SLS>
</SLSs>
<AdminInterface>
<statust> ENABLED
</status>
<password> test </password>
</AdminInterface>
</MasterServer>
SLS (istriceSLS_conf.xml)
|