> For the complete documentation index, see [llms.txt](https://docs.4dsky.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.4dsky.com/most-common-issues/remote-ssh-into-jv-for-admins.md).

# Remote ssh into JV for admins

Login to the server&#x20;

```
gcloud compute ssh --zone "europe-west12-b" "jv-rev-ssh" --project "savvy-parser-295910"
```

Kill everyone hogging port 1336 which are people that you have been serving

```
sudo fuser -k 1336/tcp
```

Change the password of the tunneluser

```
sudo passwd -u tunneluser       # Unlock the account
sudo passwd tunneluser          # Set a new password
```

Ask the user to login into his jervision using a terminal, command line etc.&#x20;

```
ssh jetvision@youl-local-jv-address
```

Tell them to  type

```
ssh -v -N -R '*:1336:localhost:22' -p 1337 tunneluser@34.17.45.17
```

and <mark style="color:blue;">give them the password</mark> Ask them to sit tight now

Got to the server and type

```
ssh -p 1336 jetvision@localhost
```

After you are done close the tunnel user down

```
sudo passwd -l tunneluser
```
