为什么 ejabberdctl 不响应 check_password 命令?

Why does ejabberdctl not give a response for the check_password command?

我想使用命令 "ejabberdctl check_password user host password" 但它没有响应。为什么是这样?我可以使用 ejabberdctl 来注册用户、更改密码、按主机列出用户,但是当我尝试使用 "check_password" 命令时,我的命令行没有任何响应。是否有我必须更新此命令以显示真或假响应的配置设置?

but it does not respond. Why is this?

如其定义所述,该命令returns一个代码:

$ ejabberdctl help check_password
  Command Name: check_password
  Arguments: user::binary
             host::binary
             password::binary
  Returns: res::rescode
  Tags:  accounts
  Description:  Check if a password is correct

如何查看代码?一种方式:

$ ejabberdctl check_password user1 localhost mypass11
$ echo $?
0

$ ejabberdctl check_password user1 localhost thisiswrong
$ echo $?
1