2019/02/24

Install SSH Server on CentOS 7


# Install SSH server
yum install -y openssh-server
# Start service at Boot
systemctl enable sshd
# Start ssh server
systemctl start sshd