Hi all,
still getting
rsync: failed to connect to msync-dvd.centos.org: No route to host (113) rsync error: error in socket IO (code 10) at clientserver.c(107) [receiver=2.6.8]
time to time (e.g. 2-3times a day) when syncing merlin.fit.vutbr.cz
Would it be possible to prepare some check for master mirrors aviablility? Started with:
#!/bin/bash
for id in f4 h3 j3 n4; do echo -n "centos $id:" rsync centos$id.centos.org::CentOS-incdvd/TIME >/dev/null && echo OK || echo Fail done
and putting the results on web may be good enough for now.
Regards
--
Tomas Kasparek E-mail: kasparek@fit.vutbr.cz CVT FIT VUT Brno, L127 Web: http://www.fit.vutbr.cz/~kasparek Bozetechova 1, 612 66 Fax: +420 54114-1270 Brno, Czech Republic Phone: +420 54114-1220
jabber: tomas.kasparek@jabber.cz GPG: 2F1E 1AAF FD3B CFA3 1537 63BD DCBE 18FF A035 53BC
Am 05.05.10 10:24, schrieb Kasparek Tomas:
Hi all,
still getting
rsync: failed to connect to msync-dvd.centos.org: No route to host (113) rsync error: error in socket IO (code 10) at clientserver.c(107) [receiver=2.6.8]
time to time (e.g. 2-3times a day) when syncing merlin.fit.vutbr.cz
It would be great to know which server that is exactly (looks like xinetd on CentOS 5 isn't as reliable as we'd like it to be).
Cheers,
Ralph
On Wed, May 05, 2010 at 11:04:07PM +0200, Ralph Angenendt wrote:
It would be great to know which server that is exactly (looks like xinetd on CentOS 5 isn't as reliable as we'd like it to be).
That's the problem. With round-robin DNS repsonses, I cannot say which server was used when the query failed.
running
SRV=`dig @pdns1.centos.org. msync-dvd.centos.org | grep ^msync | awk '{print $5}'`; echo $SRV; rsync $SRV::CentOS-incdvd/TIME
several times, I found, that 213.175.193.160 is not available, but there may be more such machines.
--
Tomas Kasparek E-mail: kasparek@fit.vutbr.cz CVT FIT VUT Brno, L127 Web: http://www.fit.vutbr.cz/~kasparek Bozetechova 1, 612 66 Fax: +420 54114-1270 Brno, Czech Republic Phone: +420 54114-1220
jabber: tomas.kasparek@jabber.cz GPG: 2F1E 1AAF FD3B CFA3 1537 63BD DCBE 18FF A035 53BC
Have you tried to traceroute msync-dvd.centos.org to see which server in the hop fails?
On Thu, May 6, 2010 at 4:44 AM, Kasparek Tomas kasparek@fit.vutbr.czwrote:
On Wed, May 05, 2010 at 11:04:07PM +0200, Ralph Angenendt wrote:
It would be great to know which server that is exactly (looks like xinetd on CentOS 5 isn't as reliable as we'd like it to be).
That's the problem. With round-robin DNS repsonses, I cannot say which server was used when the query failed.
running
SRV=`dig @pdns1.centos.org. msync-dvd.centos.org | grep ^msync | awk '{print $5}'`; echo $SRV; rsync $SRV::CentOS-incdvd/TIME
several times, I found, that 213.175.193.160 is not available, but there may be more such machines.
--
Tomas Kasparek E-mail: kasparek@fit.vutbr.cz CVT FIT VUT Brno, L127 Web: http://www.fit.vutbr.cz/~kasparekhttp://www.fit.vutbr.cz/%7Ekasparek Bozetechova 1, 612 66 Fax: +420 54114-1270 Brno, Czech Republic Phone: +420 54114-1220
jabber: tomas.kasparek@jabber.cz GPG: 2F1E 1AAF FD3B CFA3 1537 63BD DCBE 18FF A035 53BC
CentOS-mirror mailing list CentOS-mirror@centos.org http://lists.centos.org/mailman/listinfo/centos-mirror
On Thu, May 06, 2010 at 05:29:12AM -0400, Chris wrote:
Have you tried to traceroute msync-dvd.centos.org to see which server in the hop fails?
213.175.193.160 does respond to ping, just the rsync service seems to be down:
rsync: failed to connect to 213.175.193.160: No route to host (113) rsync error: error in socket IO (code 10) at clientserver.c(107) [receiver=2.6.8]
OK, it gets up till I was on a lunch.
--
Tomas Kasparek E-mail: kasparek@fit.vutbr.cz CVT FIT VUT Brno, L127 Web: http://www.fit.vutbr.cz/~kasparek Bozetechova 1, 612 66 Fax: +420 54114-1270 Brno, Czech Republic Phone: +420 54114-1220
jabber: tomas.kasparek@jabber.cz GPG: 2F1E 1AAF FD3B CFA3 1537 63BD DCBE 18FF A035 53BC
On Thu, May 06, 2010 at 10:44:14AM +0200, Kasparek Tomas wrote:
On Wed, May 05, 2010 at 11:04:07PM +0200, Ralph Angenendt wrote:
It would be great to know which server that is exactly (looks like xinetd on CentOS 5 isn't as reliable as we'd like it to be).
That's the problem. With round-robin DNS repsonses, I cannot say which server was used when the query failed.
running
SRV=`dig @pdns1.centos.org. msync-dvd.centos.org | grep ^msync | awk '{print $5}'`; echo $SRV; rsync $SRV::CentOS-incdvd/TIME
several times, I found, that 213.175.193.160 is not available, but there may be more such machines.
iptables issue (for rsync) on 213.175.193.160 (centosr4.centos.org), fixed
Thanks for pointing it out.
Tru