Intel® Tiber Developer Cloud
Help connecting to or getting started on Intel® Tiber Developer Cloud
331 Discussions

MLOps Lab 3: How to forward the MLFlow U.I to a Local Browser via SSH

TGWelcome
Novice
2,098 Views

 How to forward the MLFlow U.I running on the server on port 8080 to a Local Browser via SSH ?

 

My ssh config is as follows:

 

```

Host jump
User guest
HostName 146.152.232.8
IdentityFile ~/.ssh/id_rsa_intel

Host idc
HostName 100.81.34.147
User ubuntu
IdentityFile ~/.ssh/id_rsa_intel
ProxyJump jump

```

 

The webserver is being run on the Dev Cloud instance as follows:

 

```

mlflow ui --port 8080

```

Labels (1)
0 Kudos
1 Solution
TGWelcome
Novice
2,079 Views

Solved:

 

.ssh/config:

 

```

Host jump
User guest
HostName 146.152.232.8
IdentityFile ~/.ssh/id_rsa_intel

Host idc
HostName 100.81.34.147
User ubuntu
IdentityFile ~/.ssh/id_rsa_intel
LocalForward 8888 100.81.34.147:8080
ProxyJump jump

```

View solution in original post

0 Kudos
2 Replies
TGWelcome
Novice
2,080 Views

Solved:

 

.ssh/config:

 

```

Host jump
User guest
HostName 146.152.232.8
IdentityFile ~/.ssh/id_rsa_intel

Host idc
HostName 100.81.34.147
User ubuntu
IdentityFile ~/.ssh/id_rsa_intel
LocalForward 8888 100.81.34.147:8080
ProxyJump jump

```

0 Kudos
Zulkifli_Intel
Moderator
2,030 Views

Hi, this thread will no longer be monitored since this issue has been resolved. If you need any additional information from Intel, please submit a new question.


0 Kudos
Reply