ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
#### 下载时间有点长 https://www.elastic.co/cn/downloads/elasticsearch 链接地址 wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.5.1-linux-x86_64.tar.gz ### 解压 tar -zxvf es.gz ### 创建用户 useradd es 给予权限 chown -R es.es elasticsearch ### 切换用户 su es 启动 ./elasticsearch/bin/elasticsearch ### 测试访问 curl 'http://localhost:9200/?pretty' ![](https://img.kancloud.cn/32/df/32dfa001bdffd279edc29aefc0e853a0_850x412.png) 返回以上信息表示安装成功 连接成功 注意这只是本地可以访问 ### 修改网络连接配置 vim elasticsearch-7.5.1/config/elasticsearch.yml ![](https://img.kancloud.cn/69/69/6969c6a538894fd3b9d6bb207f956f47_603x153.png) 箭头处要空一格 ### 修改好以后让它在后台运行 加上-d参数 ./elasticsearch-7.5.1/bin/elasticsearch -d ### 配置文件修改  vim /etc/security/limits.conf文件,增加配置,用户退出后重新登录生效 * soft nofile 65536 * hard nofile 65536 * soft nproc 4096 * hard nproc 4096 vim /etc/sysctl.conf文件,增加配置 vm.max_map_count=262144 执行以下命令生效 sysctl -p cluster.initial_master_nodes: ["node-1"]