2017-01-21 2 views
0

Ich befolge die Anweisungen unter this wiki doc, um die konfluente Plattform auf meiner EC2-Instanz unter amazon linux (Version 2016.09) zu installieren. Ich tat alles, was er sagt, einschließlich:Der Versuch, konfluente Plattform (Kafka) 3.1.1 auf aws Linux mit yum zu installieren. PYCURL ERROR 22 erhalten - "Die angeforderte URL hat einen Fehler zurückgegeben: 404 Not Found"

$ sudo rpm --import http://packages.confluent.io/rpm/3.1/archive.key 

Erstellt /etc/yum.repos.d/confluent.repo mit diesem Inhalt:

[Confluent.dist] 
name=Confluent repository (dist) 
baseurl=http://packages.confluent.io/rpm/3.1/6 
gpgcheck=1 
gpgkey=http://packages.confluent.io/rpm/3.1/archive.key 
enabled=1 

[Confluent] 
name=Confluent repository 
baseurl=http://packages.confluent.io/rpm/3.1 
gpgcheck=1 
gpgkey=http://packages.confluent.io/rpm/3.1/archive.key 
enabled=1 

Dann tat

$ sudo yum clean all 
$ sudo yum install confluent-platform-2.11 

Ich erhalte die folgenden Fehler jedoch:

Downloading packages: 
http://packages.confluent.io/rpm/3.1/confluent-camus-3.1.2-1.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" 
Trying other mirror. 
http://packages.confluent.io/rpm/3.1/confluent-kafka-2.11-0.10.1.1-1.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" 
Trying other mirror. 
http://packages.confluent.io/rpm/3.1/confluent-kafka-connect-elasticsearch-3.1.2-1.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" 
Trying other mirror. 
http://packages.confluent.io/rpm/3.1/confluent-kafka-connect-hdfs-3.1.2-1.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" 
Trying other mirror. 
http://packages.confluent.io/rpm/3.1/confluent-kafka-connect-jdbc-3.1.2-1.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" 
Trying other mirror. 
http://packages.confluent.io/rpm/3.1/confluent-kafka-rest-3.1.2-1.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" 
Trying other mirror. 
http://packages.confluent.io/rpm/3.1/confluent-platform-oss-2.11-3.1.2-1.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" 
Trying other mirror. 
http://packages.confluent.io/rpm/3.1/confluent-schema-registry-3.1.2-1.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" 
Trying other mirror. 


Error downloading packages: 
    confluent-kafka-2.11-0.10.1.1-1.noarch: failure: confluent-kafka-2.11-0.10.1.1-1.noarch.rpm from Confluent: [Errno 256] No more mirrors to try. 
    confluent-camus-3.1.2-1.noarch: failure: confluent-camus-3.1.2-1.noarch.rpm from Confluent: [Errno 256] No more mirrors to try. 
    confluent-kafka-rest-3.1.2-1.noarch: failure: confluent-kafka-rest-3.1.2-1.noarch.rpm from Confluent: [Errno 256] No more mirrors to try. 
    confluent-kafka-connect-hdfs-3.1.2-1.noarch: failure: confluent-kafka-connect-hdfs-3.1.2-1.noarch.rpm from Confluent: [Errno 256] No more mirrors to try. 
    confluent-kafka-connect-elasticsearch-3.1.2-1.noarch: failure: confluent-kafka-connect-elasticsearch-3.1.2-1.noarch.rpm from Confluent: [Errno 256] No more mirrors to try. 
    confluent-platform-oss-2.11-3.1.2-1.noarch: failure: confluent-platform-oss-2.11-3.1.2-1.noarch.rpm from Confluent: [Errno 256] No more mirrors to try. 
    confluent-schema-registry-3.1.2-1.noarch: failure: confluent-schema-registry-3.1.2-1.noarch.rpm from Confluent: [Errno 256] No more mirrors to try. 
    confluent-kafka-connect-jdbc-3.1.2-1.noarch: failure: confluent-kafka-connect-jdbc-3.1.2-1.noarch.rpm from Confluent: [Errno 256] No more mirrors to try. 

Es sieht irgendwie so aus, als wären die rpm-Dateien nicht an dem Ort, an dem die konfluenten Dokumente sagen, dass sie es sind. Es ist kein Problem mit meiner Internetverbindung oder irgendetwas, denn wenn ich meine confluent.repo-Datei so ändere, dass sie auf http://packages.confluent.io/rpm/3.0 zeigt, laden Sie die Kafka-Pakete einfach herunter, außer für librdkafka. Irgendwelche Vorschläge würden sehr geschätzt werden, nicht sicher, was man an diesem Punkt noch versuchen sollte.

Antwort

1

Dies scheint ein vorübergehender Fehler gewesen zu sein, der seitdem behoben wurde. (Wenn nicht, bitte berichten.)

auch: Sie sollen solche Probleme zu Confluent Mailingliste melden, wo Sie in der Regel schnellere Reaktionszeiten für solche Probleme bekommen, als auf Stack-Überlauf: https://groups.google.com/forum/?pli=1#!forum/confluent-platform

Verwandte Themen