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.
To run a graphical interface, you’ll want to connect over VNC with a client like TightVNC or RealVNC. First, lets get everything installed and set up on the server.
First we’ll install the GNOME desktop:
sudo yum groupinstall "GNOME Desktop"
Next we’ll install the VNC server:
sudo yum install tigervnc-server
The next step is to setup VNC to start at boot and create a user to login with. Copy the systemd service file:
cp /lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@:1.service
Now create a new user:
adduser vncuser
Now edit /etc/systemd/system/vncserver@:1.service and replace <USER> with vncuser
Finally start the server:
su - vncuser
vncserver
exit
systemctl enable vncserver@:1.service
systemctl start vncserver@:1.service
You should now be able to connect to the server using a VNC client at your.ip.address:5901