为 systemd-journal-upload 实例提供冗余 systemd-journal-remote

为 systemd-journal-upload 实例提供冗余 systemd-journal-remote

我在用着systemd-日志上传在多个节点上转发日志到一个systemd-journal-remote下沉,日志主机01

/var/log/journal
├── <foo-bar>
│   ├── system.journal
│   └── user-1000.journal
└── remote
    ├── remote-x.x.x.x.journal
    └── ...

这对我来说在 Debian 9 和 systemd 232 上发挥了作用。

但我希望有一个冗余系统,比如日志主机02,作为第二个systemd-journal-remote还接收上传日志的实例。

不幸的是,在(上传节点)添加另一个 URL/etc/systemd/journal-upload.conf不起作用:

[Upload]
URL=http://<REMOTE_IP_01>:<REMOTE_PORT>  # this is ignored
URL=http://<REMOTE_IP_02>:<REMOTE_PORT>  # this is working

# enable HTTPS
...

配置文档对这个问题保持沉默。

在这种情况下我该如何实现冗余?

相关内容