web-dev-qa-db-ja.com

スーパーバイザー-プロセスの標準出力をコンソールにリダイレクト

スーパーバイザーを使用して複数のプロセスを実行することを計画していますが、以下の私のsupervisord.confファイルを見つけてください。

[supervisord]

[program:bash]
command=xyz
stdout_logfile =/tmp/bash.log
redirect_stderr=true

[supervisorctl]
serverurl=unix:///tmp/supervisor.sock

[unix_http_server]
file=/tmp/supervisor.sock ; path to your socket file

[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface

スーパーバイザーを使用してスーパーバイザーを起動するときに、bashという名前のプロセスの標準出力をスーパーバイザーコンソールにリダイレクトしたい

/usr/bin/supervisord

コマンド、子プロセスのログを見ることができました。これどうやってするの ? stdout_logfile属性にsyslogを配置しようとしましたが、機能しませんでした。

26
KarthikJ

更新

セッション例からの以下のトランスクリプトを参照してください。 Supervisordは、pingの標準出力を確実にキャプチャします。他に何か要りますか?

(svd)08/09 16:26 [nodakai@kaidev01] ~/prog/svd$ cat supervisord.conf             
[supervisord]                                   

[program:ping]
command=ping 8.8.8.8
stdout_logfile =/tmp/ping.log
redirect_stderr=true

[supervisorctl]
serverurl=unix:///tmp/supervisor.sock

[unix_http_server]
file = /tmp/supervisor.sock

[inet_http_server]
port = 127.0.0.1:9001

[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
(svd)08/09 16:26 [nodakai@kaidev01] ~/prog/svd$ supervisorctl -c supervisord.conf
ping                             RUNNING   pid 27365, uptime 0:02:02
supervisor> tail ping
: icmp_req=97 ttl=48 time=59.1 ms
64 bytes from 8.8.8.8: icmp_req=98 ttl=48 time=59.2 ms
64 bytes from 8.8.8.8: icmp_req=99 ttl=48 time=59.1 ms
64 bytes from 8.8.8.8: icmp_req=100 ttl=48 time=59.4 ms
64 bytes from 8.8.8.8: icmp_req=101 ttl=48 time=59.8 ms
64 bytes from 8.8.8.8: icmp_req=102 ttl=48 time=59.2 ms
64 bytes from 8.8.8.8: icmp_req=103 ttl=48 time=59.4 ms
64 bytes from 8.8.8.8: icmp_req=104 ttl=48 time=59.5 ms
64 bytes from 8.8.8.8: icmp_req=105 ttl=48 time=59.6 ms
64 bytes from 8.8.8.8: icmp_req=106 ttl=48 time=59.5 ms
64 bytes from 8.8.8.8: icmp_req=107 ttl=48 time=60.1 ms
64 bytes from 8.8.8.8: icmp_req=108 ttl=48 time=59.4 ms
64 bytes from 8.8.8.8: icmp_req=109 ttl=48 time=59.5 ms
64 bytes from 8.8.8.8: icmp_req=110 ttl=48 time=59.5 ms
64 bytes from 8.8.8.8: icmp_req=111 ttl=48 time=59.4 ms
64 bytes from 8.8.8.8: icmp_req=112 ttl=48 time=59.1 ms
64 bytes from 8.8.8.8: icmp_req=113 ttl=48 time=59.3 ms
64 bytes from 8.8.8.8: icmp_req=114 ttl=48 time=59.2 ms
64 bytes from 8.8.8.8: icmp_req=115 ttl=48 time=59.4 ms
64 bytes from 8.8.8.8: icmp_req=116 ttl=48 time=59.5 ms
64 bytes from 8.8.8.8: icmp_req=117 ttl=48 time=59.5 ms
64 bytes from 8.8.8.8: icmp_req=118 ttl=48 time=59.6 ms
64 bytes from 8.8.8.8: icmp_req=119 ttl=48 time=59.4 ms
64 bytes from 8.8.8.8: icmp_req=120 ttl=48 time=59.4 ms
64 bytes from 8.8.8.8: icmp_req=121 ttl=48 time=59.2 ms
64 bytes from 8.8.8.8: icmp_req=122 ttl=48 time=59.3 ms
64 bytes from 8.8.8.8: icmp_req=123 ttl=48 time=59.5 ms
64 bytes from 8.8.8.8: icmp_req=124 ttl=48 time=59.5 ms
64 bytes from 8.8.8.8: icmp_req=125 ttl=48 time=59.3 ms

supervisor> 

元の投稿

supervisordデーモンの基本的な機能だったので、私は実際にあなたの返事を読むのに少し戸惑っていました。おそらく、「監視コンソール」と呼ばれるものについて誤解がありますか? supervisordデーモンの起動に使用するbashコンソールは何も出力しません。 serverurl = unix:///tmp/supervisor.sock行とfile = /tmp/supervisor.sock行で指定したパスを持つUnixドメインソケットを介して、supervisorctlコマンドでデーモンに接続する必要があります。

(svd)08/09 3:51 [nodakai@kaidev01] ~/prog/svd$ supervisorctl -c supervisord.conf
foo                              FATAL     Exited too quickly (process log may have details)
supervisor> help

default commands (type help <topic>):
=====================================
add    clear  fg        open  quit    remove  restart   start   stop  update
avail  exit   maintail  pid   reload  reread  shutdown  status  tail  version

supervisor> tail foo
-rw-r-- 1 nodakai nodakai 1521  8月  9 03:43 supervisord.log
-rw-r--r-- 1 nodakai nodakai    6  8月  9 03:43 supervisord.pid
合計 32
drwxrwxr-x 2 nodakai nodakai 4096  8月  9 03:10 bin
drwxrwxr-x 2 nodakai nodakai 4096  8月  9 03:07 include
drwxrwxr-x 3 nodakai nodakai 4096  8月  9 03:07 lib
drwxrwxr-x 2 nodakai nodakai 4096  8月  9 03:07 local
-rw-rw-r-- 1 nodakai nodakai  346  8月  9 03:43 supervisord.conf
-rw-rw-r-- 1 nodakai nodakai  340  8月  9 03:42 supervisord.conf~
-rw-rw-r-- 1 nodakai nodakai 1651  8月  9 03:43 supervisord.log
-rw-r--r-- 1 nodakai nodakai    6  8月  9 03:43 supervisord.pid
合計 32
drwxrwxr-x 2 nodakai nodakai 4096  8月  9 03:10 bin
drwxrwxr-x 2 nodakai nodakai 4096  8月  9 03:07 include
drwxrwxr-x 3 nodakai nodakai 4096  8月  9 03:07 lib
drwxrwxr-x 2 nodakai nodakai 4096  8月  9 03:07 local
-rw-rw-r-- 1 nodakai nodakai  346  8月  9 03:43 supervisord.conf
-rw-rw-r-- 1 nodakai nodakai  340  8月  9 03:42 supervisord.conf~
-rw-rw-r-- 1 nodakai nodakai 1781  8月  9 03:43 supervisord.log
-rw-r--r-- 1 nodakai nodakai    6  8月  9 03:43 supervisord.pid
合計 32
drwxrwxr-x 2 nodakai nodakai 4096  8月  9 03:10 bin
drwxrwxr-x 2 nodakai nodakai 4096  8月  9 03:07 include
drwxrwxr-x 3 nodakai nodakai 4096  8月  9 03:07 lib
drwxrwxr-x 2 nodakai nodakai 4096  8月  9 03:07 local
-rw-rw-r-- 1 nodakai nodakai  346  8月  9 03:43 supervisord.conf
-rw-rw-r-- 1 nodakai nodakai  340  8月  9 03:42 supervisord.conf~
-rw-rw-r-- 1 nodakai nodakai 1911  8月  9 03:43 supervisord.log
-rw-r--r-- 1 nodakai nodakai    6  8月  9 03:43 supervisord.pid

supervisor> status
foo                              FATAL     Exited too quickly (process log may have details)
supervisor> quit
(svd)08/09 3:51 [nodakai@kaidev01] ~/prog/svd$

また、Web GUIは非常に便利です。設定ファイルに次の行を追加します。

[inet_http_server]
port = 127.0.0.1:9001

詳細については 公式ドキュメント をご覧ください。

0
nodakai