首页 > 代码库 > Linux启动gearman服务
Linux启动gearman服务
好久没用Gearman了,服务器上的Gearman server不知道什么时候被停掉了,所以当执行程序时,报错:
File "python/response.py", line 41, in <module> File "python/response.py", line 38, in main gm_worker.set_client_id('your_worker_client_id_name') File "/usr/lib64/python2.7/site-packages/gearman-2.0.2-py2.7.egg/gearman/worker.py", line 98, in work continue_working = self.poll_connections_until_stopped(worker_connections, continue_while_connections_alive, timeout=poll_timeout) File "/usr/lib64/python2.7/site-packages/gearman-2.0.2-py2.7.egg/gearman/connection_manager.py", line 204, in poll_connections_until_stopped raise ServerUnavailable('Found no valid connections in list: %r' % self.connection_list) gearman.errors.ServerUnavailable: Found no valid connections in list: [<GearmanConnection localhost:4730 connected=False>]
从error log的最后一行ServerUnavailable,可以看出是Gearman的server被停掉了。
1.当我执行gearmand -d命令时,先是提示/var/log/gearman/gearman.log不存在,所以先在这个路径下创建一个log文件;
2.启动本机的Server,端口是4730,命令是:
gearmand --log-file gearmand.log --listen 127.0.0.1 --port=4730 --verbose=INFO &
参考资料:http://tech-lightnight.blogspot.jp/2013/04/start-with-gearman.html
Linux启动gearman服务
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。