일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- bash
- Elasticsearch
- proxycfg
- XCP-ng
- Kibana
- endpoint security
- Kibana server is not ready yet
- Proxy
- x-pack
- G-suite
- ansible
- application security
- xe guest utilities
- hardening
- 보안양파
- elastic stack
- PlayBook
- ssh key 배포
- centos 8
- 로그인불가
- ELASTIC
- macos
- pfsense
- GitLab
- 한글가이드
- docker
- miniconda
- Windows
- freebsd
- Today
- Total
선 밖에 선 자유인
fluend로 파일 원격 syslog 전송 본문
- fluentd 다운로드 (https://www.fluentd.org/download)
# wget http://packages.treasuredata.com.s3.amazonaws.com/2/redhat/7/x86_64/td-agent-2.3.5-0.el7.x86_64.rpm (centos 7)
# wget http://packages.treasuredata.com.s3.amazonaws.com/2/redhat/6/x86_64/td-agent-2.3.5-0.el6.x86_64.rpm (centos 6)
- redhat-lsb-core 설치
# yum install redhat-lsb-core
- fluentd (td-agent, CentOS 7 기준) 설치
# rpm -Uvh td-agent-2.3.5-0.el7.x86_64.rpm
- td-agent에서 파일을 remote syslog 로 전송하는 plugin 설치
# td-agent-gem install fluent-plugin-remote_syslog
- /etc/td-agent/td-agent.conf 파일 수정 (내용 추가)
---------------------------------------------------------
<source>
@type tail
tag test
format none
path <대상 로그>
</source>
<match test.*>
type remote_syslog
host <syslog 서버 IP>
port 514
tag fluentd
</match>
---------------------------------------------------------
원격 syslog 서버에서 확인하면 logging 됨
- fluentd 관련 자료
http://system-server-engineer.tistory.com/32