背景:Oracle Linux 8以上版本安装RAC,SSH互信一直不通过,检查配置没有问题原因:高版本openssh8.x 以上 ,互信存在问题解决方案:
##rename the original scpmv /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 permissionchmod 555 /usr/bin/scp##After installationmv /usr/bin/scp.orig /usr/bin/scp