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

Fix docs about SSH tunnels #508

Closed
tcompa opened this issue Jun 6, 2024 · 0 comments · Fixed by #514
Closed

Fix docs about SSH tunnels #508

tcompa opened this issue Jun 6, 2024 · 0 comments · Fixed by #514
Labels
dev/docs Developement tools and documentation

Comments

@tcompa
Copy link
Collaborator

tcompa commented Jun 6, 2024

At https://fractal-analytics-platform.github.io/fractal-web/development/tests/#remote-fractal-server-instance, I think we have the wrong script.

Current

REMOTE_PORT=8010
LOCAL_PORT=8000
REMOTE_USER=...
REMOTE_HOST_IP=...

ssh $REMOTE_USER@$REMOTE_HOST_IP -L $LOCAL_PORT:$REMOTE_HOST_IP:$REMOTE_PORT -N

should probably be

REMOTE_PORT=8010
LOCAL_PORT=8000
REMOTE_USER=...

ssh $REMOTE_USER@$REMOTE_HOST_IP -L $LOCAL_PORT:127.0.0.1:$REMOTE_PORT -N
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dev/docs Developement tools and documentation
Projects
Development

Successfully merging a pull request may close this issue.

1 participant