Systemctlで起動する際、pipelines.ymlを読み込み起動する方法

logstashをsystemctl start logstashで起動する際、デフォルトでpipelines.ymlを読み込み起動すると認識していますが、pipelines.ymlを読み込んで起動しません。

/etc/systemd/system/logstash.serviceの内容は以下

[Unit]
Description=logstash

[Service]
Type=simple
User=root
Group=root
# Load env vars from /etc/default/ and /etc/sysconfig/ if they exist.
# Prefixing the path with '-' makes it try to load, but if the file doesn't
# exist, it continues onward.
EnvironmentFile=-/etc/default/logstash
EnvironmentFile=-/etc/sysconfig/logstash
ExecStart=/usr/share/logstash/bin/logstash "--path.settings" "/etc/logstash"
Restart=always
WorkingDirectory=/
Nice=19
LimitNOFILE=16384

[Install]
WantedBy=multi-user.target

内容に不備があるとは思えないので、どなたか原因を思いつく方がいらっしゃればご教示願います。
宜しくお願い致します。

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.