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

Dev #496

Merged
merged 3 commits into from
Mar 21, 2024
Merged

Dev #496

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions wiki/Compute_Center/Berlin.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,17 @@ standard users for some common distributions:
To connect via Windows 10 you can use PowerShell as OpenSSH ist already installed by default. Create the ssh config file ```$HOME\.ssh\config``` with notepad or use the PowerShell command ```Set-Content -Path $HOME\.ssh\config -Value '<add file content here>'```
When you use PowerShell, make sure to edit the input of the file. Fill in your information and make sure that the sections HostName, IdentityFile, User, and ProxyJump are indented with four spaces for both entries.
```bash
# Replace all fields in {curly braces}
Host denbi-jumphost-01.bihealth.org
HostName denbi-jumphost-01.bihealth.org
User LifeScienceLogin
IdentityFile PATH_TO_KEY
User {LifeScienceLogin}
IdentityFile {PATH_TO_KEY}


Host NAME_OF_VM # first vm
HostName 172.16.XXX.XXX
IdentityFile PATH_TO_KEY
User ubuntu / centos
Host {NAME_OF_VM} # first vm
HostName {172.16.XXX.XXX}
IdentityFile {PATH_TO_KEY}
User {ubuntu / centos}
ProxyJump denbi-jumphost-01.bihealth.org
```

Expand All @@ -108,18 +109,18 @@ ssh NAME_OF_VM
#### Linux .ssh/config

```bash
# Replace all fields in {curly braces}
Host denbi-jumphost-01.bihealth.org
HostName denbi-jumphost-01.bihealth.org
User LifeScienceLogin
IdentityFile PATH_TO_KEY
User {LifeScienceLogin}
IdentityFile {PATH_TO_KEY}
ServerAliveInterval 120

Host NAME_OF_VM
HostName 172.16.XXX.XXX
IdentityFile PATH_TO_KEY
User ubuntu / centos
Host {NAME_OF_VM}
HostName {172.16.XXX.XXX}
IdentityFile {PATH_TO_KEY}
User {ubuntu / centos}
ProxyJump denbi-jumphost-01.bihealth.org

```

#### Setting up a SOCKS proxy
Expand Down Expand Up @@ -342,4 +343,4 @@ source openrc.sh
10. Use openstack-cli to get information about your project
```bash
openstack server list
```
```
Loading