SVN down due to move and not redirected
-
- Posts: 467
- Joined: 2008-12-21T11:51:10-07:00
SVN down due to move and not redirected
imagemagick svn is down
https://www.imagemagick.org/subversion/ImageMagick/ is 404
please add some redirection
Thanks
Bastien
https://www.imagemagick.org/subversion/ImageMagick/ is 404
please add some redirection
Thanks
Bastien
-
- Posts: 467
- Joined: 2008-12-21T11:51:10-07:00
Re: SVN down due to move and not redirected
Please stop this crap:
svn co https://www.imagemagick.org/subversion/ ... gick/trunk ImageMagick
svn: OPTIONS of 'https://www.imagemagick.org/subversion/ ... gick/trunk': 200 OK (https://www.imagemagick.org)
Thanks
bastien
svn co https://www.imagemagick.org/subversion/ ... gick/trunk ImageMagick
svn: OPTIONS of 'https://www.imagemagick.org/subversion/ ... gick/trunk': 200 OK (https://www.imagemagick.org)
Thanks
bastien
Re: SVN down due to move and not redirected
Try now. We had a couple of glitches during our move to a bigger, better, faster ImageMagick server (thanks to Network Redux).
-
- Posts: 467
- Joined: 2008-12-21T11:51:10-07:00
-
- Posts: 3
- Joined: 2011-11-05T15:17:14-07:00
- Authentication code: 8675308
Re: SVN down due to move and not redirected
(I don't know if someone manually intervened to get my account activated or if the activation email just finally got through. So I'm posting this svn-related bug report here in case something funky is happening with my email.)
Hello,
Your rsync server on mirror.imagemagick.org has been down for the last few days. Probably also related to the server move, since it seems to have happened around the same time.
I tried working around the problem by doing a local svnsync of the svn repos that I had been getting via rsync, then changing the source url to point to your svn server. But then I got a "repository permanently moved... please relocate" error, which googling tells me is actually a problem with your server's config (something along the lines of apache on virtual servers gets confused when svn is under the same directory structure. So it sounds like something got mis-configured when your servers moved to a new host).
I'll just keep watching this thread to see when things are fixed.
thanks!
j
PS: Would it be better in terms of server/bandwidth load for you guys if I used rsync or svnsync from here on out? (Don't want to needlessly tax your site.)
Hello,
Your rsync server on mirror.imagemagick.org has been down for the last few days. Probably also related to the server move, since it seems to have happened around the same time.
I tried working around the problem by doing a local svnsync of the svn repos that I had been getting via rsync, then changing the source url to point to your svn server. But then I got a "repository permanently moved... please relocate" error, which googling tells me is actually a problem with your server's config (something along the lines of apache on virtual servers gets confused when svn is under the same directory structure. So it sounds like something got mis-configured when your servers moved to a new host).
I'll just keep watching this thread to see when things are fixed.
thanks!
j
PS: Would it be better in terms of server/bandwidth load for you guys if I used rsync or svnsync from here on out? (Don't want to needlessly tax your site.)
Re: SVN down due to move and not redirected
Can you try rsync again? We tried it and its working fine. If it fails for you, post your command so we can reproduce the problem.
Subversion works fine for us too. If it fails, give us the circumstances. We need to reproduce the problem before we can comment.
Subversion works fine for us too. If it fails, give us the circumstances. We need to reproduce the problem before we can comment.
-
- Posts: 3
- Joined: 2011-11-05T15:17:14-07:00
- Authentication code: 8675308
Re: SVN down due to move and not redirected
Here's the rsync command:
This is the output:
svnsync still isn't working either. The circumstances are:
Case 1:
I svnsync'd from a local mirror of the svn repos that was obtained via rsync before the problems began. This is almost identical to Case 2, except the source URL is the path to the repos copy obtained via rsync (home/username/mirror/im/svn-rsync) instead of your server.
Changed the source url of the svnsync'd mirror to point to your server instead of the local rsync'd copy:
Did an svnsync update:
That didn't work:
so I deleted the failed svnsync copy, and tried fetching it via svnsync directly from your server:
Case 2:
Created an empty svn repos:
Added hooks to allow svnsync:
Initialized for svnsync:
Did an svnsync to get the repos:
The result is identical:
I hope this is helpful.
Code: Select all
rsync -avzrt mirror.imagemagick.org::magick_svn home/username/mirror/im/svn-rsync
Code: Select all
rsync: failed to connect to mirror.imagemagick.org: Connection refused (61)
rsync error: error in socket IO (code 10) at clientserver.c(122) [Receiver=3.0.7]
Case 1:
I svnsync'd from a local mirror of the svn repos that was obtained via rsync before the problems began. This is almost identical to Case 2, except the source URL is the path to the repos copy obtained via rsync (home/username/mirror/im/svn-rsync) instead of your server.
Changed the source url of the svnsync'd mirror to point to your server instead of the local rsync'd copy:
Code: Select all
svn propset svn:sync-from-url --revprop -r 0 https://www.imagemagick.org/subversion file:///home/username/mirror/im/svn
Code: Select all
svnsync sync file:///home/username/mirror/im/svn
Code: Select all
svnsync: Repository moved permanently to 'https://www.imagemagick.org/subversion/'; please relocate
Case 2:
Created an empty svn repos:
Code: Select all
svnadmin create /home/username/mirror/im/svn
Code: Select all
echo "#!/bin/sh" > /home/username/mirror/im/svn/hooks/pre-revprop-change
chmod 755 /home/username/mirror/im/svn/hooks/pre-revprop-change
Code: Select all
svnsync init file:///home/username/mirror/im/svn https://www.imagemagick.org/subversion
Code: Select all
svnsync sync file:///home/username/mirror/im/svn
Code: Select all
svnsync: Repository moved permanently to 'https://www.imagemagick.org/subversion/'; please relocate
Re: SVN down due to move and not redirected
Ok, try your commands again and let us know if you have any further problems with rsync / subversion.
-
- Posts: 3
- Joined: 2011-11-05T15:17:14-07:00
- Authentication code: 8675308
Re: SVN down due to move and not redirected
Terrific! Both rsync and svnsync work like a charm now! Thanks for getting that fixed guys.
Now that everything is working, do you guys have a preference for how people grab repository updates? It's painfully slow to use svnsync for initial downloads of repos, but it's ok for getting updates if that would put less load on your servers/bandwidth usage. Let me know.
J
Now that everything is working, do you guys have a preference for how people grab repository updates? It's painfully slow to use svnsync for initial downloads of repos, but it's ok for getting updates if that would put less load on your servers/bandwidth usage. Let me know.
J