Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
joohanhong
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
JooHan Hong
joohanhong
Commits
534b49e2
Commit
534b49e2
authored
Mar 11, 2021
by
JooHan Hong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
elk cluster, init
parent
8863812c
Pipeline
#5179
passed with stages
in 44 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
65 additions
and
0 deletions
+65
-0
README.md
LOG/CLUSTER/README.md
+65
-0
elk-cluster.png
LOG/CLUSTER/images/elk-cluster.png
+0
-0
No files found.
LOG/CLUSTER/README.md
0 → 100644
View file @
534b49e2
[
![logo
](
https://www.hongsnet.net/images/logo.gif
)
](https://www.hongsnet.net)
# 개요
ELK Stack을 이용한 www.hongsnet.net 웹 로그분석을 운영 한다.
# ELK Stack 구성 참조
[
바로가기
](
https://gitlab.hongsnet.net/joohan.hong/joohanhong/tree/master/LOG
)
# ELK Stack Cluster 구성 현황
![
elk_stack_cluster
](
./images/elk-cluster.png
)
# ELK Cluster 구성 내역
**- Master Node**
```
bash
# cat /etc/elasticsearch/elasticsearch.yml
node.name:
"TB3-ELK"
node.master:
true
node.data:
true
network.host: 172.16.0.228
transport.tcp.port: 9300
transport.tcp.compress:
true
http.port: 9200
cluster.initial_master_nodes:
[
"172.16.0.228:9300"
]
discovery.seed_hosts:
[
"172.16.0.228:9300"
]
```
**- Data Node 1**
```
bash
# cat /etc/elasticsearch/elasticsearch.yml
node.name:
"TB2-ELK"
node.master:
false
node.data:
true
network.host: 172.24.0.229
transport.tcp.port: 9300
transport.tcp.compress:
true
http.port: 9200
discovery.seed_hosts:
[
"172.16.0.228:9300"
]
xpack.security.enabled:
false
```
`
**- Data Node 2**
```bash
# cat /etc/elasticsearch/elasticsearch.yml
node.name: "TB3-DOCKER-ELK"
node.master: false
node.data: true
network.host: 172.16.0.230
transport.tcp.port: 9300
transport.tcp.compress: true
http.port: 9200
discovery.seed_hosts: ["172.16.0.228:9300"]
xpack.security.enabled: false
``
``
LOG/CLUSTER/images/elk-cluster.png
0 → 100644
View file @
534b49e2
38.1 KB
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment