此文章主要讲解5.x版本的配置文件信息
elasticsearch.yml文件详解
1 | [root@CentOS7_node1 ~]# cat /usr/local/elasticsearch-5.6.16/config/elasticsearch.yml |
此文章主要讲解5.x版本的配置文件信息
1 | [root@CentOS7_node1 ~]# cat /usr/local/elasticsearch-5.6.16/config/elasticsearch.yml |
下载链接:https://pan.baidu.com/s/1uvktlm-6AqhQKJQZR1nQuw
上传到机器
1 | [root@CentOS7_node1 src]# tar xf jdk-8u161-linux-x64.tar.gz -C /usr/local/ |
本文采用源码包安装elk5.5(单机版)
elasticsearch官方文档,请参考:https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html
logstash官方文档,请参考:https://www.elastic.co/guide/en/logstash/current/index.html
filebeat官方文档,请参考:https://www.elastic.co/guide/en/beats/filebeat/7.x/index.html
kafka官方文档,请参考:http://kafka.apache.org/21/documentation.html
下载相关部署包:
1 | yum install -y wget |
系统环境:CentOS 7.6 X64
软件版本:
1 | bind-9.11.6.tar.gz |
1 | yum -y install make gcc-c++ cmake bison-devel ncurses-devel python-devel python-ply bind-utils |
1.用户添加授权目录
1 | mkdir -p /usr/local/bind/var/{logs,zones} |
1)显示超时时间
#ipvsadm -Ln –timeout
#Timeout (tcp tcpfin udp): 900 120 300
2)配置为与自身应用贴近的超时时间
#ipvsadm –set tcp tcpfin udp
ipvsadm –set 900 60 300
ipvs模块hash table默认值为2^12=4096,改为2^20=1048576。可以用ipvsadm -l命令查询当前hash table的大小。
IP Virtual Server version 1.2.1 (size=4096)
修改方法:
在/etc/modprobe.d/目录下添加文件ip_vs.conf,内容为:
options ip_vs conn_tab_bits=20
重新加载ipvs模块。
IP Virtual Server version 1.2.1 (size=1048576)
1 | vim /etc/security/limits.conf |