How do I install OpenSSH server on Ubuntu Linux
How do I install OpenSSH server on Ubuntu Linux
Ubuntu Linux install OpenSSH server - nixCraft (cyberciti.biz)
How to install SSH server in Ubuntu
The procedure to install a ssh server in Ubuntu Linux is as follows:
- Open the terminal application for Ubuntu desktop.
- For remote Ubuntu server you must use BMC or KVM or IPMI tool to get console access.
- Type command:
sudo apt-get install openssh-server
sudo systemctl enable ssh
## OR enable and start the ssh service immediately ##
sudo systemctl enable ssh --now
sudo systemctl start ssh
ssh userName@Your-server-name-IP
ssh ec2-user@ec2-aws-ip-here
Comments