CentOS7 安装 Elasticsearch 5.x
程序员文章站
2022-05-31 10:23:34
...
下载
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.6.3.tar.gz
解压
tar -zxvf elasticsearch-5.6.3.tar.gz
重命名文件名
mv elasticsearch-5.6.3 elasticsearch
启动
注意一定只能使用非root账号启动。
cd elasticsearch
-d 表示后台启动,守护进程。
./bin/elasticsearch -d
测试
curl http://127.0.0.1:9200
{
"name" : "reY8QwW",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "JUEWCyMKQcm7GD2FUBgrdg",
"version" : {
"number" : "5.6.3",
"build_hash" : "1a2f265",
"build_date" : "2017-10-06T20:33:39.012Z",
"build_snapshot" : false,
"lucene_version" : "6.6.1"
},
"tagline" : "You Know, for Search"
}
此时使用外部IP还是不能访问的。
修改配置文件
vim elasticsearch/config/elasticsearch.yml
network.host 192.168.191.32
重启
ps -ef | grep elastic
kill -9 2382(进程号)
./bin/elasticsearch -d
可能遇到的问题
1.内存不够
jvm启动内存太大,机器内存不足.
修改配置文件
vim config/jvm.options
#-Xms2g
#-Xmx2g
-Xms512m
-Xmx512m
重新启动。
2.权限不够
无法以根权限启动 elasticsearch 程序,所以我们创建一个非 root 用户,并给它赋予目录该用户权限。
3.bootstrap checks failed
启动过程中:
./bin/elasticsearch
错误提示如下:
ERROR: [2] bootstrap checks failed
[1]: max file descriptors [65535] for elasticsearch process is too low, increase to at least [65536]
[2]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
解决方法
命令行修改办法:
sudo sysctl -w vm.max_map_count=655360
并用以下命令查看是否修改成功
sysctl -a | grep “vm.max_map_count”
修改配置文件:
sudo vim /etc/sysctl.conf
加入:
vm.max_map_count=262144
切换到root用户,编辑limits.conf 添加类似如下内容:
vim /etc/security/limits.conf
添加如下内容:
* soft nofile 65536
* hard nofile 131072
* soft nproc 2048
* hard nproc 4096
推荐阅读
-
Centos7 下安装python3及卸载
-
CentOS7服务器中apache、php7以及mysql5.7的安装配置代码
-
centos7 最小安装初始化
-
Centos7使用yum安装MySQL及实现远程连接的方法
-
linux安装elasticsearch
-
Centos7使用yum安装Mysql5.7.19的详细步骤
-
使用putty连接 centos7 安装配置 java+tomact+mySQL + nginx(精品)
-
centos7编译安装Apache
-
VMware下CentOS7安装后,还原虚拟网络后,敲ifconfig不显示局域网ip解决方法
-
在CentOS7系统上编译安装MySQL 5.7.13步骤详解