yum 사용 가능하게 아래 홈페이지 참고
# yum clean all
# yum repolist all
=> repository 목록 확인 가능
# yum -y install openssh-server
=> ssh 설치
# yum install initscripts -y
=> service, systemctl 명령어 안될 때
# vi /etc/ssh/sshd_config
=> 파일 가운데의 PermitRootLogin을 yes로 바꿈
# passwd root
=> 비밀번호 변경
# systemctl start sshd
or # service ssh start
=> systemctl이 되었음
# systemctl status sshd
# rpm -qa | grep ssh
=> 상태 확인
반응형
'공부 > Docker' 카테고리의 다른 글
[kubeflow] kubectl: The connection to the server IP:8443 was refused - did you specify the right host or port? (0) | 2021.03.04 |
---|---|
docker -> container , container -> docker 로 파일 전송하고 싶을 때 (0) | 2020.08.07 |
Docker) redhat7 - service command not found (0) | 2020.08.07 |
외부에서 도커 접속 ssh (0) | 2020.07.17 |
linux Error : unable to locate package vi (0) | 2020.07.17 |