在集群管理的过程中,出现因为秘钥不同步出现投递任务不能返回报错日志的问题。
Unable to copy file /opt/pbs/dispatcher/spool/10450.mgr.OU to unser@mgr:~/bin/annovar/humandb/1.qsub.o10450, error 1
*** error from copy
Host key verification failed.
lost connection
*** end error output
Output retained on that host in: /opt/pbs/dispatcher/undelivered/10450.mgr.O
出现这个问题的解决方案:
1. .ssh/known_hosts 裡面记录的目标主机 key 值不正确。这是最普遍的情况,只要删除对应的主机记录就能恢复正常。
运行命令: sudo rm /home/yourname/.ssh/known_hosts
2. .ssh 目录或者 .ssh/known_hosts 对当前用户的权限设置不正确。这种情况比较少,一般正确设置读写权限以后也能恢复正常。
3. /dev/tty 对 other 用户没有放开读写权限。这种情况极为罕见。出现的现象是,只有 root 用户能够使用 ssh client,而所有其他的普通用户都会出现错误
#####==============================================================================================
更多相关问题,可以参考: