Questions tagged «supervisord»


7
主管套接字错误问题
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow 的主题。 去年关闭。 改善这个问题 $ supervisorctl reread error: <class 'socket.error'>, [Errno 111] Connection refused: file: /usr/lib64/python2.6/socket.py line: 567 我正在尝试在生产系统上配置主管,但遇到此错误。主管日志文件为空。 当我输入时supervisorctl,它会抱怨: http://localhost:9001 refused connection 当前没有端口9001监听,AFACT:不lsof | grep TCP返回任何内容。

5
主管和环境变量
我真的不知道如何让主管使用环境变量。 以下是配置代码段。 [program:htNotificationService] priority=2 #autostart=true #autorestart=true directory=/home/ubuntu/workspace/htFrontEnd/heythat/htsite command = /usr/bin/python htNotificationService.py -service stdout_logfile=/var/log/heythat/htNotificationService.log redirect_stderr=true environment=PATH=/home/ubuntu/workspace/htFrontEnd/heythat stopsignal=QUIT 我尝试了以下方法: environment=PATH=/home/ubuntu/workspace/htFrontEnd/heythat environment=PYTHONPATH=$PYTHONPATH:/home/ubuntu/workspace/htFrontEnd/heythat environment=PATH=/home/ubuntu/workspace/htFrontEnd/heythat,PYTHONPATH=$PYTHONPATH:/home/ubuntu/workspace/htFrontEnd/heythat 当我启动主管时,我得到 htNotificationService: ERROR (abnormal termination) 我可以通过设置python路径从外壳开始,但不能从超级用户开始。在日志中,我收到一条错误消息,指出找不到导入。好吧,如果主管可以工作,那就可以解决。我什至在/ etc / environments中有路径? 主管为什么不工作?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.