Skip to content

Commit 5c91c9e

Browse files
author
runshell
committed
modified: "content/post/\347\275\221\347\273\234\345\256\211\345\205\250/centos stream9\345\256\211\350\243\205arkime.md"
1 parent 0511110 commit 5c91c9e

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

content/post/网络安全/centos stream9安装arkime.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,45 +9,45 @@ categories: ["网络安全"] # 文章分类
99
image: "/images/Arkime_Logo.png"
1010
---
1111

12-
# 下载包
12+
## 下载包
1313

1414
```bash
1515
wget https://mirror.ghproxy.com/https://github.com/arkime/arkime/releases/download/v4.3.0/arkime-4.3.0-1.el9.x86_64.rpm
1616
```
1717

18-
# 安装依赖
18+
## 安装依赖
1919

2020
```bash
2121
yum install -y perl-libwww-perl perl-JSON perl-LWP-Protocol-https
2222
```
2323

24-
# 安装 arkime
24+
## 安装 arkime
2525

2626
```bash
2727
rpm -i arkime-4.3.0-1.el9.x86_64.rpm
2828
```
2929

30-
# 阅读 readme
30+
## 阅读 readme
3131

3232
```bash
3333
cat /opt/arkime/README.txt
3434
```
3535

36-
# 查看网卡,清楚管理口网卡和用于接收镜像的网卡
36+
## 查看网卡,清楚管理口网卡和用于接收镜像的网卡
3737

3838
```bash
3939
ifconfig
4040
```
4141

42-
# 执行配置脚本进行交互式配置
42+
## 执行配置脚本进行交互式配置
4343

4444
根据提示选择镜像网卡,输入密码等。配置过程会自动安装 elasticsearch,如果是内网机需手动安装,elasticsearch 可自行安装,本机部署建议监听 127.0.0.1
4545

4646
```bash
4747
/opt/arkime/bin/Configure
4848
```
4949

50-
# 启动服务
50+
## 启动服务
5151

5252
```bash
5353
systemctl start elasticsearch.service
@@ -56,19 +56,19 @@ systemctl enable elasticsearch.service
5656
netstat -lnp | grep 9200
5757
```
5858

59-
# 初始化 elasticsearch
59+
## 初始化 elasticsearch
6060

6161
```bash
6262
/opt/arkime/db/db.pl http://127.0.0.1:9200 init
6363
```
6464

65-
# 添加 web 管理员账号
65+
## 添加 web 管理员账号
6666

6767
```bash
6868
/opt/arkime/bin/arkime_add_user.sh cbtdadmin "Admin User" fuzak0uling --admin
6969
```
7070

71-
# 启动服务
71+
## 启动服务
7272

7373
```bash
7474
systemctl start arkimecapture.service
@@ -79,7 +79,7 @@ systemctl enable arkimeviewer.service
7979
netstat -lnp | grep 8005
8080
```
8181

82-
# 出现 bug 查看日志
82+
## 出现 bug 查看日志
8383

8484
```bash
8585
cat /opt/arkime/logs/viewer.log
@@ -95,16 +95,16 @@ firewall-cmd --add-rich-rule='rule family="ipv4" source address="10.x.x.x" port
9595
firewall-cmd --runtime-to-permanent
9696
```
9797

98-
# 可能缺失的文件
98+
## 可能缺失的文件
9999

100-
## 国内访问需要使用镜像站
100+
### 国内访问需要使用镜像站
101101

102102
```bash
103103
wget " https://mirror.ghproxy.com/https://raw.githubusercontent.com/wireshark/wireshark/master/manuf"
104104
mv manuf /opt/arkime/etc/oui.txt
105105
```
106106

107-
## 通常无需访问镜像站
107+
### 通常无需访问镜像站
108108

109109
```bash
110110
wget "https://www.iana.org/assignments/ipv4-address-space/ipv4-address-space.csv"
@@ -114,16 +114,16 @@ mv ipv4-address-space.csv /opt/arkime/etc/
114114
systemctl restart arkimecapture.service
115115
```
116116

117-
# 优化配置
117+
## 优化配置
118118

119-
## 清理 60 天以前的流量日志
119+
### 清理 60 天以前的流量日志
120120

121121
```bash
122122
crontab -e
123123
0 0 * * * /opt/arkime/db/db.pl 127.0.0.1:9200 expire daily 60
124124
```
125125

126-
## 配置 elasticsearch 水位线
126+
### 配置 elasticsearch 水位线
127127

128128
```bash
129129
curl -X PUT "http://127.0.0.1:9200/_cluster/settings?pretty" -H 'Content-Type: application/json' -d'
@@ -137,7 +137,7 @@ curl -X PUT "http://127.0.0.1:9200/_cluster/settings?pretty" -H 'Content-Type: a
137137
}'
138138
```
139139

140-
## 配置删除 pcap 包保证空闲磁盘空间
140+
### 配置删除 pcap 包保证空闲磁盘空间
141141

142142
```bash
143143
vi /opt/arkime/etc/config.ini

0 commit comments

Comments
 (0)