【发布时间】:2014-04-22 07:45:18
【问题描述】:
我正在尝试使用 beanstalkd 作为我的 laravel 应用程序的队列驱动程序。当我尝试在队列中推送某些内容时出现此错误。
Pheanstalk_Exception_ConnectionException
Socket error 111: Connection refused (connecting to localhost:11300)
请注意,在“queue.php”中,我刚刚将默认驱动程序更改为“beanstalkd”,但没有更改驱动程序的任何设置。驱动程序的设置如下-
'beanstalkd' => array(
'driver' => 'beanstalkd',
'host' => 'localhost',
'queue' => 'default',
),
请帮帮我。
【问题讨论】: