Skip to content

Use of GinanEDA #76

Answered by seballgeyer
gnss-freshman asked this question in Q&A
Discussion options

You must be logged in to vote

Hello,

It seems like the EDA (Exploratory Data Analysis) is running on a remote host, which makes it inaccessible directly from your localhost. To access it on your localhost, you'll need to forward the port 5000 of your remote host to your localhost. There are several ways to do this, but one common method is using SSH port forwarding.

You can forward the port using the following command:

ssh -fN -L 5000:localhost:5000 <remoteusername>@<remoteip>

This command forwards port 5000 from the remote host to port 5000 on your localhost. Replace with your username on the remote host and with the IP address of the remote host.

Regarding your second question, for post-processing and analyzing the …

Replies: 4 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by seballgeyer
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
question Further information is requested
2 participants
Converted from issue

This discussion was converted from issue #74 on March 20, 2024 20:01.