linux本地可以访问elasticsearch,外部浏览器访问不了
参考地址:https://blog.csdn.net/t0404/article/details/89294812
改ip地址后还是访问不了
解决方案:开放端口
iptables -I INPUT 5 -m state --state NEW -m tcp -p tcp --dport 9200 -j ACCEPT
参考链接:https://www.cnblogs.com/mangoubiubiu/p/13378781.html
成功