0

Debian Squeeze サーバーにコンパイルおよびインストールされた AMQP を使用して、RabbitMQ サーバーに接続しています。インスタンス化するクラスで次のコマンドを使用しています。

$this->_amqpConnection = new AMQPConnection($arrRmqConfig);
$this->_amqpConnection->connect();

// creating the amqp channel is sufficient to throw the errors
$this->_amqpChannel = new AMQPChannel($this->_amqpConnection);

$this->_amqpExchange = new AMQPExchange($this->_amqpChannel);
$this->_amqpExchange->setName($strExchange);

$this->_amqpExchange->publish($strMessage, 'dco.marker', AMQP_MANDATORY);

lighttpd エラー メッセージと HTTP-500 応答が表示されます。

2012-09-10 17:43:01: (mod_fastcgi.c.2568) unexpected end-of-file (perhaps the fastcgi process died): pid: 11358 socket: unix:/var/tmp/sockets/php-fastcgi.socket11050-99 
2012-09-10 17:43:01: (mod_fastcgi.c.3356) response not received, request sent: 1002 on socket: unix:/var/tmp/sockets/php-fastcgi.socket11050-99 for /index.php?, closing connection 

メッセージの発行とコードのデバッグは機能しています。プログラムが最後まで実行されるのに、内部サーバー エラーが発生するのはなぜかと思います。

誰でもこれを再現できますか、またはアイデアがありますか?

ありがとう

4

1 に答える 1

0

新しいバージョンで問題が修正されたようです

于 2012-12-19T09:40:46.070 に答える