开源工具集
OpenVPN
IPSecVPN
ELK日志分析平台
elasticsearch
kibana
logstash
filebeat
Loki日志分析平台
蓝鲸
麦聪DaaS
SQLynx
Spug(运维平台)
JumpServer(堡垒机)
DataEase(数据分析)
1Panel(运维管理面板)
MeterSphere(持续测试)
Syncthing同步神器
matomo(网站访问统计系统)
Yapi接口管理平台
Sentry前端监控平台
Frp内网穿透
Frp使用示例
FileBrowser轻量文件管理
code-server在线VSCODE
Swagger UI可视化API
GoReplay流量重现
GitLab代码仓库
GOGS(Git服务器)
Confluence(知识管理协作)
RouterOS路由器(MikroTik)
本文档使用MrDoc发布
返回首页
-
+
elasticsearch
2021年4月13日 14:18
admin
##注意事项:(需先安装java1.8) yum install -y java-1.8.0 ##下载地址 https://www.elastic.co/cn/downloads/elasticsearch ##安装 wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.6.0-x86_64.rpm rpm -iUvh elasticsearch-7.6.0-x86_64.rpm ##修改配置文件 vi /etc/elasticsearch/elasticsearch.yml cluster.name: my-app node.name: node-1 path.data: /var/lib/elasticsearch path.logs: /var/log/elasticsearch cluster.initial_master_nodes: ["node-1"] network.host: 0.0.0.0 http.port: 9200 ##启动与停止 systemctl daemon-reload systemctl enable elasticsearch systemctl start elasticsearch systemctl status elasticsearch systemctl stop elasticsearch ##验证 http://IP:9200 #若能看到文字最后'for search, you know',即启动成功 ##修改内存 vim /etc/elasticsearch/jvm.options -Xms1g -Xmx1g
分享到: