Guacamole cannot connect via SSH – FIX

If you get “SSH handshake failed” when trying to use Guacamole to connect to Ubuntu via SSH, you need to use a workaround: In the meantime a workaround is adding “HostKeyAlgorithms +ssh-rsa” to the end of /etc/ssh/sshd_config on the Ubuntu machine and restart sshd. Note: I don’t have an understanding of the security implications of … Read more

How To Use Rsync to Sync Local and Remote Directories

https://www.digitalocean.com/community/tutorials/how-to-use-rsync-to-sync-local-and-remote-directories Introduction Rsync, which stands for “remote sync”, is a remote and local file synchronization tool. It uses an algorithm that minimizes the amount of data copied by only moving the portions of files that have changed. In this guide, we will cover the basic usage of this powerful utility. What Is Rsync? Rsync is … Read more

WordPress on Kubernetes in Ubuntu

WordPress on Kubernetes in Ubuntu based on: https://github.com/bitnami/charts/tree/master/bitnami/wordpress/#installing-the-charthttps://vitux.com/install-and-deploy-kubernetes-on-ubuntu/ 1) Install snapd sudo apt update sudo apt install snapd 2) Install helm sudo snap install helm –classic 3) Install and enable Docker sudo apt install docker.io sudo systemctl enable docker 4) Add the Kubernetes signing key on both the nodes curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key … Read more