我正在尝试在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 正在使用 Ubuntu 16.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 ?
PS即使我不必使用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
您不需要带有 collectd 的容器的主管。
例如,您创建了名为“my_collectd:latest”的图像,那么您需要运行以下命令:
docker run -d --name my_test my_collectd:latest collectd -f
这将在守护进程模式下创建名为“my_test”的容器。它应该在里面运行 collectd -f 命令。