순서대로 해야함!
1. root로그인 제한
[root@localhost ~]# vi /etc/ssh/sshd_config
PermitRootLogin yes ==> PermitRootLogin no
2. wheel 그룹에 특정계정을 추가
[root@localhost ~]# vi /etc/group
wheel:x:10:root ==> wheel:x:10:root,abcd(root로 su – 사용할 계정)
3. su명령어 퍼미션 및 소유권 변경
[root@localhost ~]# chmod 4750 /bin/su
-rwsr-x--- 1 root root 45004 3월 17 2004 su
[root@localhost ~]# chown root:wheel /bin/su
-rwsr-x--- 1 root wheel 45004 3월 17 2004 su
4. sshd 재시작
[root@localhost ~]# /etc/init.d/sshd restart
'기술자료 > 기술운영자료' 카테고리의 다른 글
rsync 설정과 사용(기본 포트외 SSH 포트 사용방법) (0) | 2016.03.20 |
---|---|
rsync 설정과 사용 (0) | 2016.03.20 |
[Linux] Opensuse-graphic 설치메뉴얼 (0) | 2016.03.20 |
HAProxy 소개와 설정 (1/2) (0) | 2016.03.20 |
HAProxy mysql 로드밸런싱 구성 테스트(2/2) (0) | 2016.03.20 |