0.镜像密码
root用户: 密码itcast
itcast用户: 密码itcast
itheima用户: 密码itheima
1.关闭防火墙:
#永久设置防火墙状态
# systemctl enable firewalld.service #打开防火墙永久性生效,重启后不会复原
systemctl stop firewalld # 本次停止
systemctl disable firewalld.service #关闭防火墙,永久性生效,重启后不会复原
2.启动elasticsearch
su itheima # 切换到itheima用户启动
cd /opt/elasticsearch-7.4.0/bin
./elasticsearch #启动
3.启动kibana
由于kibana,如果用root启动,需要加–allow-root参数
su root
# 切换到kibana的bin目录
cd /opt/kibana-7.4.0-linux-x86_64/bin
# 启动
./kibana --allow-root
4.访问:
ifconfig 查看ip
浏览器输入http://192.168.xx.xx:9200/ 访问es
浏览器输入http://192.168.xx.xx:5601/,访问kibana