Reputation: 101
I have configured an ELK stack server with filebeat which monitors logs across several nodes within the EKS cluster on AWS.
I would like to expose the Kibana dashboard so that I can view these logs. As the machine containing ELK stack has a private IP address (no public IP), how can I expose it to outside access so that I can view it from my desktop? There were recommendations to follow, however, the 1st one and 3rd one don't work quite well, whereas 2nd one is not preferred.
I would appreciate some insight into a potential solution.
Upvotes: 0
Views: 215
Reputation: 101
Simply setting up port-forwarding on host machine worked for me.
ssh -v -N -L <local port>:<elk_host>:<remote port> <jump box>
Upvotes: 1