ELK之Filebeat自动断开问题解决
自动断开命令
解决自动断开命令
nohup ./filebeat -e -c filebeat.yml >./filebeat.log 2>&1 & disown
其他的方式(目前我没有使用)
在linux操作系统 /etc/systemd/system目录下创建一个filebeat.service文件,写入如下内容
需要注意 替换文件的位置以及版本
[Unit]
Description=Filebeat is a lightweight shipper for metrics.
Documentation=https://www.elastic.co/products/beats/filebeat
Wants=network-online.target
After=network-online.target
[Service]
Environment="LOG_OPTS=-e"
Environment="CONFIG_OPTS=-c /home/soft/filebeat-7.15.2-linux-x86_64/filebeat.yml"
Environment="PATH_OPTS=-path.home /home/soft/filebeat-7.15.2-linux-x86_64/filebeat -path.config /home/soft/filebeat-7.15.2-linux-x86_64 -path.data /home/soft/filebeat-7.15.2-linux-x86_64/data -path.logs /home/soft/filebeat-7.15.2-linux-x86_64/logs"
ExecStart=/home/soft/filebeat-7.15.2-linux-x86_64/filebeat $LOG_OPTS $CONFIG_OPTS $PATH_OPTS
Restart=always
[Install]
WantedBy=multi-user.target
chmod +x /etc/systemd/system/filebeat.service
# 依次执行下列命令
systemctl daemon-reload
systemctl enable filebeat
systemctl start filebeat