ElasticSearch安装head

1585364631
2022-04-04 / 0 评论 / 230 阅读 / 正在检测是否收录...

ElasticSearch安装head

0.环境准备

ElasticSearch安装完毕

准备文件:

  • node.js安装包(node-v16.14.2-linux-x64.tar.xz)
  • head项目文件

1.安装node.js

1.解压压缩包

tar -xvf node-v16.14.2-linux-x64.tar.xz -C /

2.配置环境变量

cd /node-v16.14.2-linux-x64/
pwd
vim /etc/profile
#####追加内容#####
export NODE_HOME=/node-v16.14.2-linux-x64
export PATH=$PATH:$NODE_HOME/bin
#################
#刷新环境变量
source /etc/profile

3.验证安装成功

node -v

2.安装git并拉取head项目文件

1.yum安装git

yum install -y git

2.拉取项目文件

cd /root/
mkdir head
cd head/
git clone https://github.com/mobz/elasticsearch-head.git
#查看项目是否克隆完成
ls elasticsearch-head

3.安装并且启动head

1.更换node.js镜像源

npm config set registry https://registry.npm.taobao.org
#检测是否成功更换
npm config get registry

2.安装

cd /root/head/elasticsearch-head/
npm install

3.启动

cd /root/head/elasticsearch-head/
nohup npm run start &

4.打开地址并连接

http://本机ip:9100

连接地址:

ElasticSearch连接地址

ip:9200

0

评论 (0)

取消