ElasticHD在linux下安装部署以及远程访问

下载ElasticHD:https://github.com/360EntSecGroup-Skylar/ElasticHD/releases/

ElasticHD在linux下安装部署以及远程访问_第1张图片

作者在github有教如何部署运行

ElasticHD在linux下安装部署以及远程访问_第2张图片

下载后,解压

unzip elasticHD_linux_amd64.zip

修改权限

chmod 0777 ElasticHD

运行

./ElasticHD -p 127.0.0.1:9800 

如果运行提示 exec: "xdg-open": executable file not found in $PATH 报错

因为找不到xdg-open命令,安装xdg-utils之后命令就可以使用了.

yum install xdg-utils

再次执行

./ElasticHD -p 127.0.0.1:9800 

提示如下,表示已经运行成功

To view elasticHD console open http://127.0.0.1:9800 in browser
xdg-open: no method available for opening 'http://127.0.0.1:9800'
exit status 3

因为我是在服务器部署,在本地打ip+端口访问一直访问不了。怀疑是不是有ip访问限制

改成

./ElasticHD -p 0.0.0.0:9800 

启动,再远程访问,一切正常。果然-p参数是ip访问限制

 

你可能感兴趣的:(elasticsearch)