Results 1 to 2 of 2
i have a setup with about 30 Suse Linux Enterpise Server 10 Service Pack 1 and i have a backup script that in pseudo code looks like:
for server in ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 09-26-2008 #1Just Joined!
- Join Date
- Sep 2008
- Posts
- 3
ssh_exchange_identification: Connection closed by remote host
i have a setup with about 30 Suse Linux Enterpise Server 10 Service Pack 1 and i have a backup script that in pseudo code looks like:
for server in 1 to 30
do
ssh $server tar -cz $logdir && scp $logdir.tar.gz $central_log_repo &
done
the problem is while all the servers get the logs tarred, the return trip doesnt allows work. random servers log this error:
ssh_exchange_identification: Connection closed by remote host
where of course remote host is the $central_log_repo
there is no mention on $central_log_repo of any attempt by the offending server(s)
in summary, on one run server5 could scp the tarfile to $central_log_repo and on another it might fail because of the ssh error. how do i fix this?
- 09-30-2008 #2Just Joined!
- Join Date
- Sep 2008
- Posts
- 3
solution found
solution found at : archive.netbsd.se


Reply With Quote
