emqx remote_console 执行脚本命令提示错误无法进行

EMQX 版本 5.3.2

EMQX 安装部署方式

tar包解压方式,linux物理机部署8台集群

EMQX 集群情况

使用 8个节点组成集群

服务器(运行 EMQX 的机器)硬件配置

32核 256GB

服务器操作系统和平台

Centos7.4

1、 进入emqx的bin目录下,执行./emqx remote_console
2、 执行
lists:foldl(
fun(Pid, Acc) →
case erlang:process_info(Pid, current_function) of
{current_function,{qlc, wait_for_request,3}} →
catch erlang:exit(Pid, kill),
Acc + 1;
_ → Acc
end end, 0, erlang:processes()).

在第2步执行脚本时,如下图所示错误:

你所截图不全,看不出来问题在哪里呢。


ps: 好奇这个脚本是怎么想到的