centos 7.0安装elasticsearch 6.x
程序员文章站
2024-02-21 21:00:52
...
周末开始学习啦
下载 elasticsearch 安装包
$ wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.3.2.tar.gz
## 解压
tar -xvf elasticsearch-6.3.2.tar.gz
配置 elasticsearch.yml文件
## 应用名
cluster.name: my-application
## data存放目录
path.data: /usr/local/elasticsearch-6.3.2/data
## 日志存放目录
path.logs: /usr/local/elasticsearch-6.3.2/logs
## bootstrap
bootstrap.memory_lock: false
bootstrap.system_call_filter: false
## 设置都可以访问
network.host: 0.0.0.0
## 设置端口
http.port: 9200
配置jvm.options 文件
由于博主是阿里云的服务器,配置不咋的,设置一下内存、默认是1g
#-Xms1g
#-Xmx1g
-Xms256m
-Xmx256m
创建用户组
groupadd elasticsearch
useradd elasticsearch -g elasticsearch
passwd elasticsearch
配置 /etc/security/limits.conf 文件
vim /etc/security/limits.conf
# End of file
root soft nofile 65536
root hard nofile 65536
* soft nofile 65536
* hard nofile 65536
# elasticsearch
* soft nproc 2048
* hard nproc 4096
配置 /etc/sysctl.conf 文件
# elasticsearch
vm.max_map_count=655360
启动 elasticsearch
su elasticsearch
进入bin文件夹,启动
./elasticsearch
访问地址 localhost:9200
ES比传统关系型数据库,对一些概念上的理解:
Relational DB -> Databases -> Tables -> Rows -> Columns
Elasticsearch -> Indices -> Types -> Documents -> Fiel
启动报错的几个解决方式:
https://www.cnblogs.com/linzepeng/p/12084734.html
https://www.cnblogs.com/jingping/p/9448099.html
推荐阅读
-
centos 7.0安装elasticsearch 6.x
-
详解腾讯云CentOS7.0使用yum安装mysql及使用遇到的问题
-
CentOS 6.x使用yum快速安装MySQL 5.5
-
.Net Core linux (Centos 7.0) 环境 线上安装
-
Centos7.0下编译安装FFmpeg4.0.2
-
CentOS 7.0最小安装及配置
-
Centos7安装Elasticsearch和Kibana
-
CentOS7系统 安装Elasticsearch、Kibana
-
VNC 安装 (适用Redhat 9.0 和 CentOS 7.0+)
-
centos 7.0最小化安装nginx 源代码编译安装 过程都记录下来了 不能访问 这是什么原因?