本篇内容主要讲解“elasticserach+kibnan的安装和配置方法”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“elasticserach+kibnan的安装和配置方法”吧!
下载elasticserach https://www.elastic.co/downloads/past-releases 版本elasticsearch-7.2.0-linux-x86_64.tar.gz
服务器版本:centos 7 虚拟机 2G内存
java version "1.8.0_211"
解压 tar -zxvf elasticsearch-7.2.0-linux-x86_64.tar.gz
运行 在bin目录运行./elastisearch
浏览器浏览器运行 localhost:9200
运行成功 .
注意:1.不能用root账号运行否则会出现权限问题。
打开外网访问:config下的elasticsearch.yml
出现问题:
ERROR: [3] bootstrap checks failed
: max file descriptors [4096] for elasticsearch process is too low, increase to at least [65535]
: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
参考博文https://blog.csdn.net/weixin_39800144/article/details/81162002
切换到root用户下
问题[1]
原因:max_map_count这个参数就是允许一个进程在VMAs(虚拟内存区域)拥有最大数量,VMA是一个连续的虚拟地址空间,当进程创建一个内存映像文件时VMA的地址空间就会增加,当达到max_map_count了就是返回out of memory errors。
// 修改下面的文件 里面是一些内核参数
vim /etc/sysctl.conf
//添加以下配置
vm.max_map_count=655360
添加完后保存,然后执行
sysctl -p
问题[2]
原因:最大文件打开数量太小,出现此错误,切换到root用户下,修改limits.conf
vim /etc/security/limits.conf 添加
# End of file
root soft nofile 65536
root hard nofile 65536
* soft nofile 65536
* hard nofile 65536
切换回用户重新启动:
ERROR: [1] bootstrap checks failed
: the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured
解决
这时候继续编辑.config/elasticsearch.yml文件,将
#cluster.initial_master_nodes: ["node-1", "node-2"]
修改为 cluster.initial_master_nodes: ["node-1"]
重新启动成功 外网连接也成功;
下载:https://www.elastic.co/downloads/past-releases
尽量选择和elasticserach一样版本的Kibana版本。
解压
tar -zxvf kibana-7.2.0-linux-x86_64.tar.gz
运行 ./bin/kibana
运行成功
主要: 在elasticserach 运行的情况下才能运行成功否则回一直寻找启动
设置外网启动:
修改 vim config/kibana.yml
重新启动:
访问成功
到此,相信大家对“elasticserach+kibnan的安装和配置方法”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。