Close

Login Area

WHMCS-bridge

Base de Conhecimento

Enable SSH on VPS Leet

Enable SSH on VPS Leet

Enable SSH on CentOS 7:

Before installing new software, update the software repository list with the following command:

yum update -y

After the screen confirms that the packages have been updated:

Install the SSH Server by run the following command:

yum –y install openssh-server openssh-clients

systemctl start sshd

systemctl enable sshd

systemctl status sshd

Enable SSH on Ubuntu 20.10:

Before installing new software, update the software repository list with the following command:

sudo apt-get update

After the screen confirms that the packages have been updated:

Install the SSH Server by run the following command:

sudo apt-get install ssh

sudo systemctl ssh start

sudo systemctl ssh enable

service ssh status

Enable SSH on Debian 10:

Before installing new software, update the software repository list with the following command:

sudo apt-get update

After the screen confirms that the packages have been updated:

Install the SSH Server by run the following command:

sudo apt install openssh-server

sudo service ssh start

sudo systemctl status ssh

 

  • 0 Utilizadores acharam útil
Esta resposta foi útil?