我正在ejabberd中实现外部身份验证。我正在使用provided by ejabberd的PHP MySQL脚本。不幸的是,当我尝试连接存储在表中的用户详细信息时,它会给我一个错误。
=ERROR REPORT==== 2013-04-11 13:17:54 ===
E(<0.269.0>:extauth:133) : extauth call '["auth","admin","localhost","admin"]' didn't receive
response
=INFO REPORT==== 2013-04-11 13:17:54 ===
I(<0.462.0>:ejabberd_c2s:649) :
({socket_state,ejabberd_http_bind,{http_bind,<0.461.0>,{{127,0,0,1},39426}},ejabberd_http_bind})
Failed authentication for admin@localhost
有人可以帮我吗?
答案 0 :(得分:0)
错误表示您没有在60秒内收到外部程序的响应(这是默认超时)。
您是否在ejabberd.cfg的extauth_program中定义了它?
答案 1 :(得分:0)
花了1天时间试图获得工作ejabberd授权
从stdin读取时阻塞过程基本上出现问题
以下是从符号读取符号的非块符号解决方案:
function non_block_read($fd, &$data) {
$read = array($fd);
$write = array();
$except = array();
$result = stream_select($read, $write, $except, 0);
if($result === false) {
throw new Exception('stream_select failed');
}
if($result === 0) return false;
$data.= stream_get_line($fd, 1);
return true;
}
这里的守护进程代码也可以进行终身阅读循环。
$fh = fopen("php://stdin", 'r');
$fhout = fopen("php://stdout", 'w');
$pdo = new PDO('mysql:host='.$host.';dbname='.$db, $user,$pass);
if(!$fh){
die("Cannot open STDIN\n");
}
$aStr='';
$collect=false;
do {
if (!non_block_read($fh,$aStr)) {
if (strlen($aStr) > 0) {
$toAuth = substr(trim($aStr),1);
checkAuth($toAuth,$pdo,$fhout);
$aStr='';
}
else sleep (1);
}
}
while (true);
一些解释:checkAuth - 任何实现&#39; auth&#39;和&#39; isuser&#39;处理程序。
sleep(1) - 逃避CPU负载的简单方法
第一个符号 - 在邮件之前添加的服务符号,它因客户而异,所以我只是将其删除
这是回复代码。回复 - 真实|虚假价值观。
$message = @pack("nn", 2, $result);
fwrite($stdout, $message);
flush();
享受。