-
Notifications
You must be signed in to change notification settings - Fork 3
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
Add remote port forwarding #178
Open
superstar54
wants to merge
3
commits into
main
Choose a base branch
from
add-remote_port_forwarding
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+15
−6
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,11 @@ | |
|
||
ssh {user}@{hostname} -NfL {port}:localhost:{port} | ||
|
||
If you visit the remote machine through a jump server, you run (replace the J_IP with the jump server IP): | ||
|
||
ssh -J {user}@J_IP {user}@{hostname} -NfL {port}:localhost:{port} | ||
|
||
|
||
on your local computer, then open AiiDAlab on your local computer at | ||
|
||
{url} | ||
|
@@ -87,7 +92,7 @@ def callback(ctx, param, value): # noqa: U100 | |
)(cmd) | ||
|
||
|
||
@click.group(context_settings={"help_option_names": ["-h", "--help"]}) | ||
@click.group() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you rebase the branch? I guess you force push and override the new changes. |
||
@click.option( | ||
"-v", | ||
"--verbose", | ||
|
@@ -415,11 +420,9 @@ async def _async_start( | |
raise click.ClickException(f"Unknown error occurred: {error}") | ||
else: | ||
if wait: | ||
logging_level = logging.getLogger().getEffectiveLevel() | ||
try: | ||
with spinner("Waiting for AiiDAlab instance to get ready..."): | ||
if logging_level == logging.DEBUG: | ||
echo_logs = asyncio.create_task(instance.echo_logs()) | ||
echo_logs = asyncio.create_task(instance.echo_logs()) | ||
await asyncio.wait_for(instance.wait_for_services(), timeout=wait) | ||
except asyncio.TimeoutError: | ||
raise click.ClickException( | ||
|
@@ -436,8 +439,7 @@ async def _async_start( | |
else: | ||
LOGGER.debug("AiiDAlab instance ready.") | ||
finally: | ||
if logging_level == logging.DEBUG: | ||
echo_logs.cancel() | ||
echo_logs.cancel() | ||
|
||
LOGGER.debug("Preparing startup message.") | ||
msg_startup = ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,11 @@ This can be easily achieved by creating an SSH tunnel and forwarding the AiiDAla | |
$ ssh [email protected] -NfL 8888:localhost:8888 | ||
``` | ||
|
||
If you visit the remote machine through a jump server, you run (replace the J_IP with the jump server IP): | ||
|
||
```console | ||
$ ssh -J {user}@J_IP {user}@{hostname} -NfL {port}:localhost:{port} | ||
``` | ||
|
||
|
||
5. Finally, open AiiDAlab in the browser of your local machine via the URL provided earlier, something like: http://localhost:8888/?token=74647d5fe0... |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is that possible to get the
J_IP
if you are already ssh to the remote through SSH, this command is suppose to be copy-paste and run.