Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
I had to change the below line - ssh -L 5901:127.0.0.1:5901 -N -f -l username serveripaddress
It didn’t work for me but
ssh -L 8080:127.0.0.1:5901 -N -f -l username serveripaddress
works great with vmc://localhost:8080
Hi The trick is, when you started vncserver, in the result you will see something like below.
New ‘X’ desktop is test-vk-ubuntu-server-01:3
You see that last number after colon? It could be 1 or 2 or 3. If you say this number is X, then then port you should try is 5900+X. So when you do ssh, your command would be as below trying 5900+3=5903 port, if X is 3.
ssh -L 5903:127.0.0.1:5903 -N -f -l test-vk-user-01 159.65.137.11
And the command prompt simply exits ssh. Now you could go to vnc client, and connect. I used tight vnc, where I used localhost::5903 and it asked for vnc pw (which we create in a step as in the tutorial), and boom, it connected.