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!
Hi -
Thanks for the blog. I tried this and couldn’t get into VNC. I first had problems with enabling VNC server with this command:
systemctl enable vncserver@:1.service && systemctl start vncserver@:1.service
Got this: “Failed to issue method call: Bad Message”
I just modified the command (by removing the first “1” from “1.service”)
systemctl enable vncserver@:.service && systemctl start vncserver@:1.service
Strangely enough, this seemed to work. It created an xvnc process.
I then tried to get in through vnc viewer … it spins for a while before saying “Timed out waiting for a response from the host computer.”
FYI on my droplet:
[root@ZF1 system]# uname -a Linux ZF1 3.13.9-200.fc20.i686+PAE #1 SMP Fri Apr 4 12:24:18 UTC 2014 i686 i686 i386 GNU/Linux
I tried this tutorial on a Fedora 20 droplet, and have not been able to connect to the VNC server. My VNC client just said that it could not connect to the server. I think I have had the same issue as @bpudiped.
You might want to point out security implications, if any, when using VNC over an unencrypted network connection. :-/
Just in case this helps anyone in the future, I was able to get this working from a Fedora 23 server by running a couple of additional commands as root:
firewall-cmd --permanent --zone=public --add-port 5901/tcp
firewall-cmd --reload
+1 to the firewall addendum in the post above! The darned firewall blocking stuff >.> I did it with iptables in my version though. With how the IPTables was setup already by default, the command i used was “iptables -A IN_public_allow -p TCP -s 0/0 --destination-port 5900:5902 -j ACCEPT” and this gave me 0,1,and 2 that i could run different sized displays on. Just remove the :5902 and change the port to 5901 if you’re following the above directions exactly!