Update home authored by Andreas Gad's avatar Andreas Gad
...@@ -282,3 +282,30 @@ What is much more likely to cause problems, and probably will during every exper ...@@ -282,3 +282,30 @@ What is much more likely to cause problems, and probably will during every exper
The following flowchart will hopefully catch most situations. If you are stuck in a loop (an nothing starts working) do call an expert! The following flowchart will hopefully catch most situations. If you are stuck in a loop (an nothing starts working) do call an expert!
![troubleshooting](uploads/9e323e96dd2b9d626e7d05082a84f0e4/troubleshooting.png) ![troubleshooting](uploads/9e323e96dd2b9d626e7d05082a84f0e4/troubleshooting.png)
#### Ssh access
To make a portforward from bumblebee to stkern, on bumble type:
```
screen -R portforward
ssh -R 4567:localhost:22 -R 4568:localhost:8080 -R 4569:localhost:5000 andreas@stkern
```
Now you can do 3 things.
+ Ssh from stkern into bumblebee, by typing
```ssh -p 4567 is633@localhost```
from stkern.
+ Access daqc webpage by running
```ssh -L 8080:localhost:4568 YOUR_USER@stkernfys.phys.au.dk```
from your own computer.
+ Access go4 webpage by running
```ssh -L 5000:localhost:4569 YOUR_USER@stkernfys.phys.au.dk```
from your own computer.
For the last two points, you need to have access to stkern, most likely through vpn.
Lastly when connected to the local IGISOL web, through ethernet connection, you can access the daqc and go4 webpages by typing
```bumblebee.igisol:8080```
or
```bumblebee.igisol:5000```
into your webbrowser.
\ No newline at end of file