2021. 9. 17. 14:28 오라클
[INS-06006] Passwordless SSH connectivity not set up between the following node(s)
- 19c RAC 설치과정 중
Oracle 유저로 미리 Passwordless ssh 설정을 해 놓고, 양쪽 노드간 접속 테스트도 정상적으로 잘되는데
설치 Step 에서 다음과 같은 에러가 난다.
[INS-06006] Passwordless SSH connectivity not set up between the following node(s):
- 해결방법
ssh -V 로 버전 확인시 openSSH 7.5p1 으로 나온다면 아래와 같이 작업 전 선조치하고 작업 후 원복하면 된다.
MOS Note : INS-06006 GI RunInstaller Fails If OpenSSH Is Upgraded to 8.x (Doc ID 2555697.1)
설치전
# Rename the original scp.
mv /usr/bin/scp /usr/bin/scp.orig
# Create a new file </usr/bin/scp>.
vi /usr/bin/scp
# Add the below line to the new created file </usr/bin/scp>.
/usr/bin/scp.orig -T $*
# Change the file permission.
chmod 555 /usr/bin/scp
다시 작업 진행..
설치후 다시 원복
mv /usr/bin/scp.orig /usr/bin/scp