Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated and fixed port forwarding rules #102

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions cadvisor_kickingthetv.pmx
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,22 @@ documentation: |-
### Port-Forwarding

If using Virtual Box, use the following command in your local machine's terminal window to create the port forwarding rules:
(9200:9200 is for ElasticSearch
80:80 is from Grafana
8086:8086 is for InfluxDB
8888:8080 is for Panamax)

```
VBoxManage controlvm panamax-vm natpf1 keystone,tcp,,8888,,8080
VBoxManage controlvm panamax-vm natpf1 keystone1,tcp,,8888,,8080
```
```
VBoxManage controlvm panamax-vm natpf1 keystone,tcp,,80,,80
VBoxManage controlvm panamax-vm natpf1 keystone2,tcp,,80,,80
```
```
VBoxManage controlvm panamax-vm natpf1 keystone,tcp,,9200,,9200
VBoxManage controlvm panamax-vm natpf1 keystone3,tcp,,9200,,9200
```
```
VBoxManage controlvm panamax-vm natpf1 keystone,tcp,,8086,,8086
VBoxManage controlvm panamax-vm natpf1 keystone4,tcp,,8086,,8086
```

Rule below is only required if you want to access InfluxDB web interface:
Expand Down