Allowing root login over SSH is commonly considered a poor security practice throughout the tech industry. Instead, you could perform sensitive administrative tasks by connecting with a user account and executing commands using `sudo`. View the contents of the SSH configuration file using the following command. cat /etc/ssh/sshd_config In this file you will find the following line: #PermitRootLogin no Un-comment the line using your desired editor. Then restart the SSH serv......