【环境搭建】远程服务器搭建ElasticSearch

参考:

非常详细的阿里云服务器安装ElasticSearch过程..._阿里云服务器使用elasticsearch-CSDN博客

服务器平台:AutoDL

注意:

1、切换为非root用户,su 新用户名,否则ES无法启动

2、安装过程中没有出现设置账号密码,但请求时需要鉴权,可以关闭鉴权配置。

config-> elasticsearch.yml-> xpack.security.enabled false

创建索引:

curl -X PUT "http://localhost:9200/docs" -H "Content-Type: application/json" -d '
{
  "mappings": {
    "properties": {
      "content": {
        "type": "text"
      }
    }
  }
}'

插入数据:

curl -X POST "http://localhost:9200/docs/_doc" -H "Content-Type: application/json" -d '
{
  "content": "干完这个活就出门遛弯"
}'

通过python创建es对象,并且进行bm25检索

python 复制代码
from elasticsearch import Elasticsearch

self.es_client = Elasticsearch("http://127.0.0.1:9200")

dsl = {
            'query': {
                'match': {
                    'content': "想出门遛弯"
                }
            },
            "size": 3
        }

search_result = self.es_client.search(index='docs', body=dsl)

本地kibana怎么连接远程ES

以AutoDL为例

注意:本地kibana和远程服务器上的ES版本号要一致

AutoDL提供的SS H通道。host:127.0.0.1,port: 6006

STEP 1 修改ES的config->elasticresearch.yml, host和port配置

STEP2 修改kibama的config->kibana.yml, 修改对应的es host信息

STEP 3 服务器启动ES,./bin/elasticsearch, 本地启动kibana ./bin/kibana

注意kibana config中server port , 浏览器打开http:localhost:5602

相关推荐
sinat_3842410928 分钟前
使用 npm 安装 Electron 作为开发依赖
服务器
朝九晚五ฺ43 分钟前
【Linux探索学习】第十四弹——进程优先级:深入理解操作系统中的进程优先级
linux·运维·学习
Kkooe2 小时前
GitLab|数据迁移
运维·服务器·git
久醉不在酒2 小时前
MySQL数据库运维及集群搭建
运维·数据库·mysql
虚拟网络工程师4 小时前
【网络系统管理】Centos7——配置主从mariadb服务器案例(下半部分)
运维·服务器·网络·数据库·mariadb
BLEACH-heiqiyihu4 小时前
RedHat7—Linux中kickstart自动安装脚本制作
linux·运维·服务器
勤奋的小王同学~4 小时前
项目虚拟机配置测试环境
服务器
007php0074 小时前
GoZero 上传文件File到阿里云 OSS 报错及优化方案
服务器·开发语言·数据库·python·阿里云·架构·golang
JosieBook4 小时前
【网络工程】查看自己电脑网络IP,检查网络是否连通
服务器·网络·tcp/ip
我的K84095 小时前
Flink整合Hudi及使用
linux·服务器·flink