Seedlists
Aus YaCyWiki
Inhaltsverzeichnis |
Working
These Seedlists should be available and fresh. If not, please move it to not working
hardcoded:
http://home.arcor.de/hermens/yacy/seed.txt http://low.audioattack.de/yacy/seed.txt http://www.lulabad.de/seed.txt http://www.yacy.net/seed.txt
dynamic:
http://www.anomic.de/yacy/seed.txt http://www.mcmilk.de/seed.txt http://www.suma-lab.de/yacy/seed.txt http://www.pruefziffernberechnung.de/YaCy/seedFile.txt http://home.arcor.de/tim.stein/yacy/127001-2.txt http://mxchange.org/downloads/yacy/seed2.txt http://yacy-websuche.mxchange.org/seeds/seed.txt https://www.ghcif.de/~yacy/seed.txt http://h1004850.serverkompetenz.net:8181/seed.txt http://www.daburna.de/YaCy/seed.txt http://yacy.kicks-ass.net:8080/repository/seed.txt http://cowpuncher.drollette.com/seed.txt http://mirror.hfase.com/yacy/seed.txt
Tor(.eff.org) Seeds can be found on De:YaCy-Tor
Not Working
Seeds which are not fresh/available at the moment.
http://www.findenstattsuchen.info/YaCy/seed_yacy5.txt ==> 404 reply http://www.findenstattsuchen.info/YaCy/seed_yacy6.txt ==> 404 reply http://www.findenstattsuchen.info/YaCy/seed_MotoYaCy.txt ==> 404 reply http://www.zipfelmaus.com/yacy/seed.txt ==> Exists but really out-dated (Sun 08 May 2011 11:59:43 AM CEST) http://yacy.tokeek.spacequadrat.de/seed.txt ==> No reply (timeout) http://www.g-town-rebels.de/~marcus/seed.txt ==> 404 reply http://www.g-town-rebels.de/~marcus/seed2.txt ==> 404 reply http://yacy.xotti.de/seed.txt ==> Redirects to front page http://home.arcor.de/tim.stein/yacy/127001-1.txt ==> empty file http://reezer.org/yacy/seed.txt ==> exists, but outdated (Jan, 4th 2010 as of Jan, 27th) http://projekte.newsfreak.de/yacy/seed.txt ==> exist, but really outdated (e-mail from Webmaster) http://www.krautter-consulting.de/seed/seed.txt ==> exist, but really outdated (e-mail from Webmaster) http://www.findenstattsuchen.info/YaCy/seed_HYN.txt ==> 404 reply http://www.findenstattsuchen.info/YaCy/seed_yacy1.txt ==> 404 reply http://www.findenstattsuchen.info/YaCy/seed_yacy2.txt ==> 404 reply http://www.findenstattsuchen.info/YaCy/seed_yacy3.txt ==> 404 reply http://lilirasa.com/yacy/seed.txt ==> "404 Not Found" http://lilirasa.com/yacy/seed2.txt ==> "404 Not Found" http://www.sam-daheim.de/seed.txt ==> No reply (timeout) http://trumpkin.de/yacy/seed.txt ==> exist, but really outdated, seed.txt Date:30-Juni-2008 http://morefreedom.ath.cx:8080/seed.txt ==> "404 Not Found" http://www.marcelhenseler.de/yacy/seed.txt ==> "404 Not Found" http://www.netbude.de/yacy/seed.txt ==> "404 Not Found" http://lapsus-memoriae.de/yacy/seed.txt ==> "404 Not found" http://dustland.dyndns.org/yacy/seedfile.txt ==> Timeout http://home.arcor.de/k.c.e/yacy/seed.txt ==> emty file http://www.blowmymind.de/yacy/seed1.txt ==> "404 Not found" http://www.burningboard.net/seed.txt ==> "404 Not Found" http://www.inspire-mind.de/yacy/seed.txt ==> "404 Not Found" http://www.roland-ramthun.de/seed.txt ==> "404 Not Found" http://www.unet.univie.ac.at/~a9625792/seed.txt ==> "404 Not Found" (10.07.2007) http://yacy.fekepp.ath.cx/seed.txt ==> "404 Not Found" 26 Sep 2007 20:50 UTC http://de.geocities.com/d15511z/yacy/demon/seed.txt ==> 404 reply http://de.geocities.com/d15511z/yacy/devil/seed.txt ==> 404 reply http://yacy1.web2.0du.de:8080/www/seed.txt ==> Connection refused http://web2.0du.de/yacy/seed.txt ==> Timeout http://studynursevz.de/yacy/seed.txt -> exist, but really outdated, Last-Modified: Fri, 09 May 2008 17:12:37 GMT
mod_rewrite
Some search engines list the seed files regardless of an exclusion in robots.txt. To force them not to index the list you can redirect any other client than YaCy on access to the seedfile. To do this, you need mod_rewrite on Apache and the following entries in your .htaccess file:
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} !^yacy.*$ [NC]
RewriteRule seed.txt http://www.yacy.net/ [R]
Please keep in mind that now nobody except YaCy itself can download the seedfile.
get fresh list of seedfiles (in Linux)
You can parse the Network.html?page=1 on your (or another) peer to get a really fresh list of seedfiles. (i.E. in scripts ..)
lynx --source "http://<peer>:<port>/Network.html?page=1"|grep "Type: Principal"|cut -d '"' -f 4
i.E. build a simple seedfiles link checker:
lynx --source "http://<peer>:<port>/Network.html?page=1"|grep "Type: Principal"|cut -d '"' -f 4|while read link ; do lynx --dump "$link" &> /dev/null && echo "[OK] $link" || echo "[ERROR] $link" done