SERVER1
とSERVER2
の2つのノードを作成するとします。
create ltm node SERVER1 description SERVER1 address 10.1.1.1%200
create ltm node SERVER2 description SERVER2 address 10.1.1.2%200
ノードを追加した後、プールを作成して、1つだけではなく複数のヘルスモニターを割り当てたいと考えました。私のスクリプトには次のようなものがあります
create ltm pool some_pool_1 members add { SERVER1:0 SERVER2:0 } monitor health_monitor_1 health_monitor_2 monitor_3 health_monitor_4 health_monitor_5
これは、health_monitor_1
をスローする前に、このSyntax Error: "health_monitor_2" unknown property
のみを割り当てます。 health_monitor_1
に移動すると、SERVER1
とSERVER2
が表示されますが、他のヘルスモニターに移動すると、ノードSERVER1
とSERVER2
inが表示されません。プールに移動して、他のヘルスモニターを手動で割り当てる必要があります。スクリプトにcreate ltm pool some_pool_1 members add { SERVER1:0 SERVER2:0 } monitor health_monitor_1 health_monitor_2 monitor_3 health_monitor_4 health_monitor_5
を変更して、プールに複数のヘルスモニターを割り当てられるようにしてくれる人はいますか?
作成しているプールに複数のモニターを接続する場合は、それらを括弧で囲む必要があります。
create ltm pool p1 members add { 10.1.1.1:80 10.1.1.2:80 } monitor "http https"
または、2台以上のモニターを機能させたい場合:
create ltm pool p1 members add { 10.1.1.1:80 10.1.1.2:80 } monitor min 2 of { tcp http https }