By obewun
I recently added a VNC server to my droplet. Now when I use web console I no longer have access to CLI and console takes me straight to GUI login which is not working and is unresponsive (blank screen). I have tried in different browsers and also in private mode.
How do I get the command line back in web console so that I can log in to my droplet?
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!
Accepted Answer
Hi,
You can disable GUI at system startup. Before you start modifying system settings, I recommend creating a snapshot of your droplet. You would be able to restore droplet if something went wrong. Note that you will be charged for the time when snapshot exists. It is not expensive to have a snapshot for a short period of time, unless its size is huge.
Here are the the steps to disable GUI at system startup.
1. In DO control panel switch to recovery environment (Boot from Recovery ISO), and launch recovery console.
2. Choose from menu Mount Your Disk Image(something like /dev/vda1 should appear next to the menu item), and then enter Interactive Shell.
3. Change root directory for your droplet’s one. But before that, bind some system resources. Execute following commands
mount -o bind /dev /mnt/dev
mount -o bind /dev/pts /mnt/dev/pts
mount -o bind /proc /mnt/proc
mount -o bind /sys /mnt/sys
mount -o bind /run /mnt/run
chroot /mnt
Now, your are in your droplet’s root directory. Be careful because you are acting as a root.
4. Disable GUI. Run the following command:
systemctl set-default multi-user
You should get a message like that:
OutputRemoved /etc/systemd/system/default.target.
Created symlink /etc/systemd/system/default.target → /lib/systemd/system/multi-user.target.
5. Exit your chrooted environment.
exit
6. Shutdown recovery environment
shutdown -h now
7. Switch to normal mode (Boot from Hard Drive). Launch DO console. CLI should be available again :)
Let me know how it works, pls.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.