linux, docker, kubernetes
linux remote ssh 접속
nanon
2021. 1. 10. 20:37
remote server에 ssh로 접속하기 위해서는
openssh-server openssh-clients
가 필요하다
아래 명령어로 설치, 실행한다.
# yum 또는 apt-get
yum –y install openssh-server openssh-clients
systemctl sshd start
systemctl sshd enable
systemctl sshd status