1 루트 사용자로 로그인 후 sshd가 설치되어 있는지 확인합니다.
rpm -qa | grep sshd
2. 만약 위에처럼 sshd 패키지가 설치되지 않은 경우 아래와 같이 SSH 서버를 설치 합니다.
yum install openssh-server
3 SSH 서비스를 시작합니다.
service sshd start
4. sshd 서비스 실행 확인을 위해 netstat -antp | grep sshd로 포트 22가 활성화되었는지 확인 합니다.
netstat -antp | grep sshd
5. 재부팅 이후 sshd 서비스가 자동으로 실행되도록 설정합니다.
chkconfig sshd on
'컴퓨터 > Linux' 카테고리의 다른 글
centos 성능 모니터링 방법 : top (0) | 2023.01.29 |
---|---|
Centos7 /lib/ld-linux.so.2: bad ELF interpreter 오류 해결하기 (0) | 2023.01.24 |
Centos7 환경에서 nginx 컴파일 설치 및 systmctl 등록하기 (0) | 2023.01.18 |
CentOS7 고정 IP 설정하기 (0) | 2023.01.17 |
CentOS7 openssl 설치 : openssl-1.0.2f.tar.gz (0) | 2023.01.12 |