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

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

TGWelcome
Novice
941 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
922 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
923 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
873 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