3.2.2. 正常停止代理实例
在输入 stop
命令后,手动关闭会强制断开所有客户端的连接。另外,也可通过 启用 secureful-shutdown 的配置元素将代理配置为安全
关闭。
当 将 secureful-shutdown-enabled
设置为 true
时,输入 stop
命令后,不允许新的客户端连接。但是,现有的连接被允许在关闭过程启动之前在客户端上关闭。Gureful -shutdown-enabled
的默认值为 false
。
使用 secure ful-shutdown-timeout
配置元素为客户端设置一个时长(毫秒),以便在连接强制与代理端关闭之前断开连接。在所有连接都关闭后,关闭进程都会启动。使用 secureful -shutdown-timeout
的一个优点是它可防止客户端连接延迟关闭。Gureful -shutdown-timeout
的默认值为 -1
,这意味着代理会无限期等待客户端断开连接。
以下流程演示了如何配置使用超时的安全关闭。
流程
-
打开配置文件
<broker_instance_dir>\etc\broker.xml
。 添加 secure
ful-shutdown-enabled
配置元素,并将值设为true
。<configuration> <core> ... <graceful-shutdown-enabled> true </graceful-shutdown-enabled> ... </core> </configuration>
添加 secure
ful-shutdown-timeout
配置元素,并以毫秒为单位设置超时值。在以下示例中,客户端连接在发出stop
命令后强制关闭 30 秒(30000
毫秒)。<configuration> <core> ... <graceful-shutdown-enabled> true </graceful-shutdown-enabled> <graceful-shutdown-timeout> 30000 </graceful-shutdown-timeout> ... </core> </configuration>