1、下载elasticsearch
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.0.0-darwin-x86_64.tar.gz
2、解压下载的包
tar -xzf elasticsearch-8.0.0-darwin-x86_64.tar.gz
cd elasticsearch-8.0.0/
3、设置elasticsearch家目录
vim ~/.bashrc
在文件最后一行添加: ES_HOME=/家目录/elasticsearch-8.0.0, 然后执行
source ~/.bashrc
4、启动elasticsearch服务
./bin/elasticsearch
如果系统启动 不报错,访问下面地址:
curl --cacert $ES_HOME/config/certs/http_ca.crt -u elastic https://localhost:9200
会提示
Enter host password for user 'elastic':
这个用户的密码是启动服务的时候,会打印出来(可以翻看启动时的日志):
绿色的就是密码,输入密码后,将得到下面信息:
这就表示安装成功了。