web-dev-qa-db-ja.com

Docker内でcollectdを開始するにはどうすればよいですか?

Docker内でcollectdを開始しようとしていますが、dockerfileでcollectdを開始するコマンドの実行から、スクリプトの使用、service collectd startの実行、supervisordの使用まで、すべてを試しましたが、まだ機能していません。

私のsupervisord.confファイルは

[unix_http_server]
file=/tmp/supervisor.sock   ; (the path to the socket file)

[supervisord]
logfile=/tmp/supervisord.log ; (main log file;default $CWD/supervisord.log)
logfile_maxbytes=50MB        ; (max main logfile bytes b4 rotation;default 50MB)
logfile_backups=10           ; (num of main logfile rotation backups;default 10)
loglevel=info                ; (log level;default info; others: debug,warn,trace)
pidfile=/tmp/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
nodaemon=false               ; (start in foreground if true;default false)
minfds=1024                  ; (min. avail startup file descriptors;default 1024)
minprocs=200                 ; (min. avail process descriptors;default 200)
user=root            ;

; the below section must remain in the config file for RPC
; (supervisorctl/web interface) to work, additional interfaces may be
; added by defining them in separate rpcinterface: sections
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface

[supervisorctl]
serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL  for a unix socket

[program:collectd]
command=/usr/sbin/collectd -C /etc/collectd/collectd.conf -f
autostart=true
autorestart=true
priority=5
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0

Dockerfile内で実行してみました

RUN service collectd start

DockerfileはUbuntu16.04を使用しており、collectdをapt-get install collectdでインストールしました。これにより、collectdバージョン5.5.1が美しくインストールされます(これが私が欲しいものです)。

とにかく、コンテナを実行してps auxを実行すると

USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root         1  0.6  0.0  18180  2000 ?        Ss   20:27   0:00 bash
root        11  0.0  0.0  34364  1544 ?        R+   20:27   0:00 ps aux

基本的にcollectdはまだ実行されていません

コンテナ内ではservice collectd startで開始し、正常に動作します

USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root         1  0.0  0.0  18180  2008 ?        Ss   20:27   0:00 bash
root        27  0.0  0.0   4300   320 ?        Ss   20:27   0:00 /usr/sbin/collectdmon -P /var/run/collectd.pid -- -C /etc/collectd
root        30  0.0  0.0 799820  2368 ?        Sl   20:27   0:00 collectd -C /etc/collectd/collectd.conf -f
root        42  0.0  0.0  34364  1544 ?        R+   20:30   0:00 ps aux

では、基本的に、Dockerイメージが実行されたときにcollectdを自動的に実行するにはどうすればよいですか?

P.S supervisrodを使用する必要がない場合でも、コンテナーを実行するときにcollectdを実行する方法が必要です。

ありがとう

更新:コンテナ内で実行された単一のcollectdコマンドもcollectdを開始します

USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root         1  0.0  0.0  18180  2020 ?        Ss   21:09   0:00 bash
root        36  0.0  0.0 799820  1680 ?        Ssl  21:10   0:00 collectd
root        47  0.0  0.0  34364  1544 ?        R+   21:10   0:00 ps aux
1
uberrebu

Collectdを含むコンテナーのスーパーバイザーは必要ありません。

たとえば、「my_collectd:latest」という名前のイメージを作成した場合、次のコマンドを実行する必要があります。

docker run -d --name my_test my_collectd:latest collectd -f

これにより、デーモンモードで「my_test」という名前のコンテナが作成されます。内部でcollectd-fコマンドを実行する必要があります。

2
Navern