[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Combined combo test example doesn't work
- To: hobbit (at) hswn.dk
- Subject: Combined combo test example doesn't work
- From: "Bart Gillis" <bart.gillis (at) gmail.com>
- Date: Fri, 11 Apr 2008 15:56:52 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=J+BFWeVInhZGMuxd0sykKXome0hOn2Xs0m2C36ywXFY=; b=IpJxEAopRm7SW+i7tjmwySfa6LM1kGi3coo+T9qumFqu30jCDG/j1ApUP6Pj2q4pzMD6VmK2wGbRZ6h2ao52Tg67kO6wnGPRk2up/G754gcUUzGqlDKQfK4GLgYu0ghZ3cRVa7ZKYHkELzY9tWZHclAeBy0VIdeBbTFC1lDyyHc=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=tzDgMNsMKmttLDY2gdsWPzIB7hnN6b3JbcgRoO7R0f6nJjAyjHTzLTai1roeyeAWf9Jyt3F9TiKBDxDg0zcYNY4Knie+6FO5WRkJ1IZTESiWmJwioVpNXr9Bx+8fP0D1/MZLFMamNpup1s3Wm5tCLJM9C0pwJTJkk7stX+H7ip8=
Hello,
I tried out the example:
WebCluster.http = (Web1.http || Web2.http)
AppSrvCluster.procs = (AppSrv1.conn && AppSrv1.procs) || (AppSrv2.conn
&& AppSrv2.procs)
Customer.cluster = WebCluster.http && AppSrvCluster.procs
My code is:
DC.svcs = (MSCT\-DC\-01.conn || MSCT\-DC\-02.conn)
DNS.svcs = (MSCT\-DC\-01.svcs || MSCT\-DC\-02.svcs)
CTCS.svcs = DC.svcs && DNS.svcs
DC is a connectivity check on 2 servers. (Primary and backup domain controllers)
DNS is the DNS services on the same servers.
On my bbhost config page I've configured
127.0.0.1 DC
127.0.0.1 DNS
127.0.0.1 CTCS
To get my combo test being displayed.
For DC.svcs and DNS.svcs the result is OK
(MSCT\-DC\-01.conn||MSCT\-DC\-02.conn) = (1||1) = 1
MSCT-DC-01.conn
MSCT-DC-02.conn
And
(MSCT\-DC\-01.svcs||MSCT\-DC\-02.svcs) = (1||1) = 1
MSCT-DC-01.svcs
MSCT-DC-02.svcs
For CTCS.svcs I get:
DC.svcs&&DNS.svcs = -1&&-1 = 1
&unknown DC.svcs
&unknown DNS.svcs
Why do I get an unknown status????
Best regards
Bart Gillis