Ankündigung

Einklappen
Keine Ankündigung bisher.

MQTT API Server und MQTT Clients - LBS19001051 - LBS19001054

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

    Code:
    mysql> show triggers;
    
    Empty set (0.01 sec)
    
    
    
    
    mysql> SHOW PROCEDURE STATUS;
    
    +-----------+--------------+-----------+----------------+---------------------+---------------------+---------------+---------+----------------------+----------------------+--------------------+
    
    | Db        | Name         | Type      | Definer        | Modified            | Created             | Security_type | Comment | character_set_client | collation_connection | Database Collation |
    
    +-----------+--------------+-----------+----------------+---------------------+---------------------+---------------+---------+----------------------+----------------------+--------------------+
    
    | edomiLive | mqtt_publish | PROCEDURE | root@localhost | 2018-08-23 22:13:19 | 2018-08-23 22:13:19 | DEFINER       |         | latin1               | latin1_swedish_ci    | latin1_swedish_ci  |
    
    +-----------+--------------+-----------+----------------+---------------------+---------------------+---------------+---------+----------------------+----------------------+--------------------+
    
    1 row in set (0.01 sec)
    
    
    
    
    mysql>

    Kommentar


      Was ist mit dem dritten DROP?
      Hast du die beiden bei gestopptem EDOMI gemacht?
      Und das show triggers bei laufendem EDOMI?

      Am besten mal wie folgt wiederholen:
      1. EDOMI stoppen
      2. Die drei DROP Befehle ausführen
      3. Die beiden SHOW Befehle ausführen
      Und die gesamte Ausgabe hier posten. EDOMI sollte bei 2 und 3 gestoppt sein.


      Kommentar


        Morgen Andre,

        hier die Ausgabe.

        Code:
        Welcome to the MySQL monitor.  Commands end with ; or \g.
        
        Your MySQL connection id is 198
        
        Server version: 5.1.73 Source distribution
        
        
        
        
        Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
        
        
        
        
        Oracle is a registered trademark of Oracle Corporation and/or its
        
        affiliates. Other names may be trademarks of their respective
        
        owners.
        
        
        
        
        Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
        
        
        
        
        mysql> DROP PROCEDURE IF EXISTS mqtt_publish;
        
        Query OK, 0 rows affected (0.01 sec)
        
        
        
        
        mysql> DROP TRIGGER IF EXISTS mqtt_insert_trigger;
        
        ERROR 1146 (42S02): Table 'edomiLive.RAMko' doesn't exist
        
        mysql> DROP TRIGGER IF EXISTS mqtt_update_trigger;
        
        ERROR 1146 (42S02): Table 'edomiLive.RAMko' doesn't exist
        
        mysql> show triggers;
        
        Empty set (0.01 sec)
        
        
        
        
        mysql> SHOW PROCEDURE STATUS;
        
        Empty set (0.00 sec)
        
        
        
        
        mysql>

        Kommentar


          Eigentlich sieht es insoweit gut aus, dass kein Trigger oder Procedure mehr vorhanden ist, wenn EDOMI gestoppt ist.

          Könntest du mal EDOMI starten und dann die beiden SHOW Befehle mal ausführen. Es sollten dann zwei Trigger und eine Procedure erstellt werden.

          Kommentar


            Edomi gestartet und die Ausgabe

            Code:
            Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
            
            
            
            
            mysql> show triggers;
            
            Empty set (0.02 sec)
            
            
            
            
            mysql> SHOW PROCEDURE STATUS;
            
            +-----------+--------------+-----------+----------------+---------------------+---------------------+---------------+---------+----------------------+----------------------+--------------------+
            
            | Db        | Name         | Type      | Definer        | Modified            | Created             | Security_type | Comment | character_set_client | collation_connection | Database Collation |
            
            +-----------+--------------+-----------+----------------+---------------------+---------------------+---------------+---------+----------------------+----------------------+--------------------+
            
            | edomiLive | mqtt_publish | PROCEDURE | root@localhost | 2018-08-24 07:29:00 | 2018-08-24 07:29:00 | DEFINER       |         | latin1               | latin1_swedish_ci    | latin1_swedish_ci  |
            
            +-----------+--------------+-----------+----------------+---------------------+---------------------+---------------+---------+----------------------+----------------------+--------------------+
            
            1 row in set (0.00 sec)
            
            
            
            
            mysql>

            Kommentar


              Okay dann ist zumindest klar warum es nicht funktioniert Es werden keine Trigger angelegt Frage ist nur: Warum? Leider habe ich da keine spontane Idee. Aber wenn ich mich richtig erinnere gab es dasselbe Problem schon hier. Hast du mal hier in diesem thread gesucht?

              Kommentar


                Im Beitrag 99 scheint zu helfen. Der Publish Server published wieder.

                Danke für die Hilfe.

                Kommentar


                  Meine Erinnerung hat mich nicht getäuscht ... laut Post #99 sollte dies hier helfen:

                  Code:
                  cd /var/lib/mysql/edomiLive/
                  rm mqtt_insert_trigger.TRN
                  rm mqtt_update_trigger.TRN

                  Kommentar


                    sunnyhd : Okay, du warst schneller . Freut mich, dass es wieder geht ...

                    Kommentar


                      Zitat von OleDeluxe Beitrag anzeigen
                      Die Besonderheit ist wohl dass bei mir Edomi im Docker läuft
                      Hast du das Problem lösen können? Bei mir läuft Edomi zum Test auch gerade im Docker.
                      Ich bekomme die Meldung auch, allerdings für den 1052 LBS (Subscrive Server):
                      Code:
                      2018-10-04 14:29:25    759282    ?    9728    Datei: /usr/local/edomi/www/data/liveproject/lbs/LBS19001052.php | Fehlercode: 2 | Zeile: 90 | msg_send(): msgsnd failed: Permission denied    ERROR
                      Lustigerweise ist der aber gar nicht gestartet E1=0.
                      Der Subscribe Client funktioniert, der Publish Client auch.

                      Edit: Habe jetzt mal eine "0" auf den Default Wert vom Subscribe Server geschrieben (vorher nur ein Remanent iKO mit Wert 0 und der Default-Wert in der 2. Spalte vom LBS war 1), macht aber keinen Unterschied, die o.g. Fehlermeldung taucht nach Projektaktivierung trotzdem im Log auf.
                      Zuletzt geändert von fisch3009; 04.10.2018, 14:01.
                      Grüße
                      Matze

                      Kommentar


                        Hi
                        kurze Frage: was muss ich im Publish Server in E6 oder E7 eintragen um nur interne KOs zu übertragen? einfach "intern" in E6 funktioniert nicht...
                        Gruß
                        Thorsten

                        Kommentar


                          Wenn E8 gleich "ko" ist, dann werden die KNX GAs und iKO als IDs übertragen, d.h. bei iKOs die iKO-ID und bei KNX GAs, die GA in der Form HG-MG-UG.
                          Wenn du nun eine regular expression definierst, die alls IDs mit Bindestrichen ausschließt bzw. nur ganzzahlige Werte matcht, dann sollten nur die iKOs übertragen werden, aber wie gesagt nur als ID, nicht mit dem Namen. Wenn man den Namen möchte, dann kann man nicht so einfach filtern, denn anhand des Namens kannst du vermutlich deine iKOs nicht von KNX GAs unterscheiden.

                          Kommentar


                            okay - passt: ich verwende eh nur die iKO-IDs. Gibst du mir noch einen Tipp für eine reg-ex die "-" ausschließt?
                            (reg-ex sind ein mysterium für mich)
                            Gruß
                            Thorsten

                            Kommentar


                              Hallo

                              bin gerade dabei anzufangen mich mit mqtt zu beschäftigen.

                              Hab die LBSen auf Edomi hochgeladen.

                              und fange die Installation mit dem 19001051 an.

                              Die 19001051_install.sh nach /tmp und dann "sh 19001051_install.sh"

                              Sieht aus als wären repos nicht verfügbar oder habe ich die Installation falsch verstanden?

                              Code:
                              =~=~=~=~=~=~=~=~=~=~=~= PuTTY log 2018.10.18 10:34:23 =~=~=~=~=~=~=~=~=~=~=~=
                              sh 19001051_install.sh
                              Loaded plugins: fastestmirror
                              Loading mirror speeds from cached hostfile
                               * base: mirror.inode.at
                               * extras: mirror.digitalnova.at
                               * updates: mirror.digitalnova.at
                              http://mirror.inode.at/data/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.nextlayer.at/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirroraustria.at/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.tugraz.at/mirror/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.schlundtech.de/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.easyname.at/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centosmirror.netcup.net/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirror.iphh.net/CentOS/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.plusline.de/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://gd.tuwien.ac.at/opsys/linux/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'gd.tuwien.ac.at'"
                              Trying other mirror.
                              Setting up Install Process
                              Package php-devel-5.3.3-49.el6.x86_64 already installed and latest version
                              Package php-process-5.3.3-49.el6.x86_64 already installed and latest version
                              Resolving Dependencies
                              --> Running transaction check
                              ---> Package gcc.x86_64 0:4.4.7-17.el6 will be updated
                              ---> Package gcc.x86_64 0:4.4.7-18.el6 will be an update
                              --> Processing Dependency: libgomp = 4.4.7-18.el6 for package: gcc-4.4.7-18.el6.x86_64
                              --> Processing Dependency: cpp = 4.4.7-18.el6 for package: gcc-4.4.7-18.el6.x86_64
                              --> Processing Dependency: libgcc >= 4.4.7-18.el6 for package: gcc-4.4.7-18.el6.x86_64
                              ---> Package git.x86_64 0:1.7.1-4.el6_7.1 will be updated
                              --> Processing Dependency: git = 1.7.1-4.el6_7.1 for package: perl-Git-1.7.1-4.el6_7.1.noarch
                              ---> Package git.x86_64 0:1.7.1-8.el6 will be an update
                              ---> Package make.x86_64 1:3.81-20.el6 will be updated
                              ---> Package make.x86_64 1:3.81-23.el6 will be an update
                              ---> Package mysql-devel.x86_64 0:5.1.73-8.el6_8 will be installed
                              --> Processing Dependency: mysql = 5.1.73-8.el6_8 for package: mysql-devel-5.1.73-8.el6_8.x86_64
                              --> Running transaction check
                              ---> Package cpp.x86_64 0:4.4.7-17.el6 will be updated
                              ---> Package cpp.x86_64 0:4.4.7-18.el6 will be an update
                              ---> Package libgcc.x86_64 0:4.4.7-17.el6 will be updated
                              ---> Package libgcc.x86_64 0:4.4.7-18.el6 will be an update
                              ---> Package libgomp.x86_64 0:4.4.7-17.el6 will be updated
                              ---> Package libgomp.x86_64 0:4.4.7-18.el6 will be an update
                              ---> Package mysql.x86_64 0:5.1.71-1.el6 will be updated
                              --> Processing Dependency: mysql = 5.1.71-1.el6 for package: mysql-server-5.1.71-1.el6.x86_64
                              ---> Package mysql.x86_64 0:5.1.73-8.el6_8 will be an update
                              --> Processing Dependency: mysql-libs = 5.1.73-8.el6_8 for package: mysql-5.1.73-8.el6_8.x86_64
                              ---> Package perl-Git.noarch 0:1.7.1-4.el6_7.1 will be updated
                              ---> Package perl-Git.noarch 0:1.7.1-8.el6 will be an update
                              --> Running transaction check
                              ---> Package mysql-libs.x86_64 0:5.1.71-1.el6 will be updated
                              ---> Package mysql-libs.x86_64 0:5.1.73-8.el6_8 will be an update
                              ---> Package mysql-server.x86_64 0:5.1.71-1.el6 will be updated
                              ---> Package mysql-server.x86_64 0:5.1.73-8.el6_8 will be an update
                              --> Finished Dependency Resolution
                              
                              Dependencies Resolved
                              
                              =============================================================================================================================================================================================================================================
                               Package                                                     Arch                                                  Version                                                         Repository                                           Size
                              =============================================================================================================================================================================================================================================
                              Installing:
                               mysql-devel                                                 x86_64                                                5.1.73-8.el6_8                                                  base                                                130 k
                              Updating:
                               gcc                                                         x86_64                                                4.4.7-18.el6                                                    base                                                 10 M
                               git                                                         x86_64                                                1.7.1-8.el6                                                     base                                                4.6 M
                               make                                                        x86_64                                                1:3.81-23.el6                                                   base                                                389 k
                              Updating for dependencies:
                               cpp                                                         x86_64                                                4.4.7-18.el6                                                    base                                                3.7 M
                               libgcc                                                      x86_64                                                4.4.7-18.el6                                                    base                                                103 k
                               libgomp                                                     x86_64                                                4.4.7-18.el6                                                    base                                                134 k
                               mysql                                                       x86_64                                                5.1.73-8.el6_8                                                  base                                                895 k
                               mysql-libs                                                  x86_64                                                5.1.73-8.el6_8                                                  base                                                1.2 M
                               mysql-server                                                x86_64                                                5.1.73-8.el6_8                                                  base                                                8.6 M
                               perl-Git                                                    noarch                                                1.7.1-8.el6                                                     base                                                 29 k
                              
                              Transaction Summary
                              =============================================================================================================================================================================================================================================
                              Install       1 Package(s)
                              Upgrade      10 Package(s)
                              
                              Total download size: 30 M
                              Downloading Packages:
                              http://mirror.inode.at/data/centos/6.9/os/x86_64/Packages/cpp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.nextlayer.at/centos/6.9/os/x86_64/Packages/cpp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirroraustria.at/6.9/os/x86_64/Packages/cpp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.tugraz.at/mirror/centos/6.9/os/x86_64/Packages/cpp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.schlundtech.de/6.9/os/x86_64/Packages/cpp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.easyname.at/centos/6.9/os/x86_64/Packages/cpp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centosmirror.netcup.net/centos/6.9/os/x86_64/Packages/cpp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirror.iphh.net/CentOS/6.9/os/x86_64/Packages/cpp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.plusline.de/centos/6.9/os/x86_64/Packages/cpp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://gd.tuwien.ac.at/opsys/linux/centos/6.9/os/x86_64/Packages/cpp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'gd.tuwien.ac.at'"
                              Trying other mirror.
                              http://mirror.inode.at/data/centos/6.9/os/x86_64/Packages/gcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.nextlayer.at/centos/6.9/os/x86_64/Packages/gcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirroraustria.at/6.9/os/x86_64/Packages/gcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.tugraz.at/mirror/centos/6.9/os/x86_64/Packages/gcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.schlundtech.de/6.9/os/x86_64/Packages/gcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.easyname.at/centos/6.9/os/x86_64/Packages/gcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centosmirror.netcup.net/centos/6.9/os/x86_64/Packages/gcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirror.iphh.net/CentOS/6.9/os/x86_64/Packages/gcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.plusline.de/centos/6.9/os/x86_64/Packages/gcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://gd.tuwien.ac.at/opsys/linux/centos/6.9/os/x86_64/Packages/gcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'gd.tuwien.ac.at'"
                              Trying other mirror.
                              http://mirror.inode.at/data/centos/6.9/os/x86_64/Packages/git-1.7.1-8.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.nextlayer.at/centos/6.9/os/x86_64/Packages/git-1.7.1-8.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirroraustria.at/6.9/os/x86_64/Packages/git-1.7.1-8.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.tugraz.at/mirror/centos/6.9/os/x86_64/Packages/git-1.7.1-8.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.schlundtech.de/6.9/os/x86_64/Packages/git-1.7.1-8.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.easyname.at/centos/6.9/os/x86_64/Packages/git-1.7.1-8.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centosmirror.netcup.net/centos/6.9/os/x86_64/Packages/git-1.7.1-8.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirror.iphh.net/CentOS/6.9/os/x86_64/Packages/git-1.7.1-8.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.plusline.de/centos/6.9/os/x86_64/Packages/git-1.7.1-8.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://gd.tuwien.ac.at/opsys/linux/centos/6.9/os/x86_64/Packages/git-1.7.1-8.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'gd.tuwien.ac.at'"
                              Trying other mirror.
                              http://mirror.inode.at/data/centos/6.9/os/x86_64/Packages/libgcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.nextlayer.at/centos/6.9/os/x86_64/Packages/libgcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirroraustria.at/6.9/os/x86_64/Packages/libgcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.tugraz.at/mirror/centos/6.9/os/x86_64/Packages/libgcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.schlundtech.de/6.9/os/x86_64/Packages/libgcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.easyname.at/centos/6.9/os/x86_64/Packages/libgcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centosmirror.netcup.net/centos/6.9/os/x86_64/Packages/libgcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirror.iphh.net/CentOS/6.9/os/x86_64/Packages/libgcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.plusline.de/centos/6.9/os/x86_64/Packages/libgcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://gd.tuwien.ac.at/opsys/linux/centos/6.9/os/x86_64/Packages/libgcc-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'gd.tuwien.ac.at'"
                              Trying other mirror.
                              http://mirror.inode.at/data/centos/6.9/os/x86_64/Packages/libgomp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.nextlayer.at/centos/6.9/os/x86_64/Packages/libgomp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirroraustria.at/6.9/os/x86_64/Packages/libgomp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.tugraz.at/mirror/centos/6.9/os/x86_64/Packages/libgomp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.schlundtech.de/6.9/os/x86_64/Packages/libgomp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.easyname.at/centos/6.9/os/x86_64/Packages/libgomp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centosmirror.netcup.net/centos/6.9/os/x86_64/Packages/libgomp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirror.iphh.net/CentOS/6.9/os/x86_64/Packages/libgomp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.plusline.de/centos/6.9/os/x86_64/Packages/libgomp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://gd.tuwien.ac.at/opsys/linux/centos/6.9/os/x86_64/Packages/libgomp-4.4.7-18.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'gd.tuwien.ac.at'"
                              Trying other mirror.
                              http://mirror.inode.at/data/centos/6.9/os/x86_64/Packages/make-3.81-23.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.nextlayer.at/centos/6.9/os/x86_64/Packages/make-3.81-23.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirroraustria.at/6.9/os/x86_64/Packages/make-3.81-23.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.tugraz.at/mirror/centos/6.9/os/x86_64/Packages/make-3.81-23.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.schlundtech.de/6.9/os/x86_64/Packages/make-3.81-23.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.easyname.at/centos/6.9/os/x86_64/Packages/make-3.81-23.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centosmirror.netcup.net/centos/6.9/os/x86_64/Packages/make-3.81-23.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirror.iphh.net/CentOS/6.9/os/x86_64/Packages/make-3.81-23.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.plusline.de/centos/6.9/os/x86_64/Packages/make-3.81-23.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://gd.tuwien.ac.at/opsys/linux/centos/6.9/os/x86_64/Packages/make-3.81-23.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'gd.tuwien.ac.at'"
                              Trying other mirror.
                              http://mirror.inode.at/data/centos/6.9/os/x86_64/Packages/mysql-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.nextlayer.at/centos/6.9/os/x86_64/Packages/mysql-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirroraustria.at/6.9/os/x86_64/Packages/mysql-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.tugraz.at/mirror/centos/6.9/os/x86_64/Packages/mysql-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.schlundtech.de/6.9/os/x86_64/Packages/mysql-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.easyname.at/centos/6.9/os/x86_64/Packages/mysql-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centosmirror.netcup.net/centos/6.9/os/x86_64/Packages/mysql-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirror.iphh.net/CentOS/6.9/os/x86_64/Packages/mysql-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.plusline.de/centos/6.9/os/x86_64/Packages/mysql-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://gd.tuwien.ac.at/opsys/linux/centos/6.9/os/x86_64/Packages/mysql-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'gd.tuwien.ac.at'"
                              Trying other mirror.
                              http://mirror.inode.at/data/centos/6.9/os/x86_64/Packages/mysql-devel-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.nextlayer.at/centos/6.9/os/x86_64/Packages/mysql-devel-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirroraustria.at/6.9/os/x86_64/Packages/mysql-devel-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.tugraz.at/mirror/centos/6.9/os/x86_64/Packages/mysql-devel-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.schlundtech.de/6.9/os/x86_64/Packages/mysql-devel-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.easyname.at/centos/6.9/os/x86_64/Packages/mysql-devel-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centosmirror.netcup.net/centos/6.9/os/x86_64/Packages/mysql-devel-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirror.iphh.net/CentOS/6.9/os/x86_64/Packages/mysql-devel-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.plusline.de/centos/6.9/os/x86_64/Packages/mysql-devel-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://gd.tuwien.ac.at/opsys/linux/centos/6.9/os/x86_64/Packages/mysql-devel-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'gd.tuwien.ac.at'"
                              Trying other mirror.
                              http://mirror.inode.at/data/centos/6.9/os/x86_64/Packages/mysql-libs-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.nextlayer.at/centos/6.9/os/x86_64/Packages/mysql-libs-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirroraustria.at/6.9/os/x86_64/Packages/mysql-libs-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.tugraz.at/mirror/centos/6.9/os/x86_64/Packages/mysql-libs-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.schlundtech.de/6.9/os/x86_64/Packages/mysql-libs-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.easyname.at/centos/6.9/os/x86_64/Packages/mysql-libs-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centosmirror.netcup.net/centos/6.9/os/x86_64/Packages/mysql-libs-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirror.iphh.net/CentOS/6.9/os/x86_64/Packages/mysql-libs-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.plusline.de/centos/6.9/os/x86_64/Packages/mysql-libs-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://gd.tuwien.ac.at/opsys/linux/centos/6.9/os/x86_64/Packages/mysql-libs-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'gd.tuwien.ac.at'"
                              Trying other mirror.
                              http://mirror.inode.at/data/centos/6.9/os/x86_64/Packages/mysql-server-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.nextlayer.at/centos/6.9/os/x86_64/Packages/mysql-server-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirroraustria.at/6.9/os/x86_64/Packages/mysql-server-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.tugraz.at/mirror/centos/6.9/os/x86_64/Packages/mysql-server-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.schlundtech.de/6.9/os/x86_64/Packages/mysql-server-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.easyname.at/centos/6.9/os/x86_64/Packages/mysql-server-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centosmirror.netcup.net/centos/6.9/os/x86_64/Packages/mysql-server-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirror.iphh.net/CentOS/6.9/os/x86_64/Packages/mysql-server-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.plusline.de/centos/6.9/os/x86_64/Packages/mysql-server-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://gd.tuwien.ac.at/opsys/linux/centos/6.9/os/x86_64/Packages/mysql-server-5.1.73-8.el6_8.x86_64.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'gd.tuwien.ac.at'"
                              Trying other mirror.
                              http://mirror.inode.at/data/centos/6.9/os/x86_64/Packages/perl-Git-1.7.1-8.el6.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.nextlayer.at/centos/6.9/os/x86_64/Packages/perl-Git-1.7.1-8.el6.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirroraustria.at/6.9/os/x86_64/Packages/perl-Git-1.7.1-8.el6.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.tugraz.at/mirror/centos/6.9/os/x86_64/Packages/perl-Git-1.7.1-8.el6.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.schlundtech.de/6.9/os/x86_64/Packages/perl-Git-1.7.1-8.el6.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.easyname.at/centos/6.9/os/x86_64/Packages/perl-Git-1.7.1-8.el6.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centosmirror.netcup.net/centos/6.9/os/x86_64/Packages/perl-Git-1.7.1-8.el6.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirror.iphh.net/CentOS/6.9/os/x86_64/Packages/perl-Git-1.7.1-8.el6.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.plusline.de/centos/6.9/os/x86_64/Packages/perl-Git-1.7.1-8.el6.noarch.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://gd.tuwien.ac.at/opsys/linux/centos/6.9/os/x86_64/Packages/perl-Git-1.7.1-8.el6.noarch.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'gd.tuwien.ac.at'"
                              Trying other mirror.
                              
                              
                              Error Downloading Packages:
                                mysql-devel-5.1.73-8.el6_8.x86_64: failure: Packages/mysql-devel-5.1.73-8.el6_8.x86_64.rpm from base: [Errno 256] No more mirrors to try.
                                libgcc-4.4.7-18.el6.x86_64: failure: Packages/libgcc-4.4.7-18.el6.x86_64.rpm from base: [Errno 256] No more mirrors to try.
                                libgomp-4.4.7-18.el6.x86_64: failure: Packages/libgomp-4.4.7-18.el6.x86_64.rpm from base: [Errno 256] No more mirrors to try.
                                gcc-4.4.7-18.el6.x86_64: failure: Packages/gcc-4.4.7-18.el6.x86_64.rpm from base: [Errno 256] No more mirrors to try.
                                mysql-5.1.73-8.el6_8.x86_64: failure: Packages/mysql-5.1.73-8.el6_8.x86_64.rpm from base: [Errno 256] No more mirrors to try.
                                mysql-server-5.1.73-8.el6_8.x86_64: failure: Packages/mysql-server-5.1.73-8.el6_8.x86_64.rpm from base: [Errno 256] No more mirrors to try.
                                cpp-4.4.7-18.el6.x86_64: failure: Packages/cpp-4.4.7-18.el6.x86_64.rpm from base: [Errno 256] No more mirrors to try.
                                mysql-libs-5.1.73-8.el6_8.x86_64: failure: Packages/mysql-libs-5.1.73-8.el6_8.x86_64.rpm from base: [Errno 256] No more mirrors to try.
                                git-1.7.1-8.el6.x86_64: failure: Packages/git-1.7.1-8.el6.x86_64.rpm from base: [Errno 256] No more mirrors to try.
                                1:make-3.81-23.el6.x86_64: failure: Packages/make-3.81-23.el6.x86_64.rpm from base: [Errno 256] No more mirrors to try.
                                perl-Git-1.7.1-8.el6.noarch: failure: Packages/perl-Git-1.7.1-8.el6.noarch.rpm from base: [Errno 256] No more mirrors to try.
                              
                              Initialized empty Git repository in /tmp/lib_mysqludf_sys/.git/
                              error:  while accessing https://github.com/jonofe/lib_mysqludf_sys/info/refs
                              
                              fatal: HTTP request failed
                              19001051_install.sh: Zeile 4: cd: lib_mysqludf_sys/: Datei oder Verzeichnis nicht gefunden
                              19001051_install.sh: Zeile 5: ./install.sh: Datei oder Verzeichnis nicht gefunden
                              Initialized empty Git repository in /tmp/Mosquitto-PHP/.git/
                              error:  while accessing https://github.com/jonofe/Mosquitto-PHP/info/refs
                              
                              fatal: HTTP request failed
                              19001051_install.sh: Zeile 9: cd: Mosquitto-PHP: Datei oder Verzeichnis nicht gefunden
                              cp: Aufruf von stat für home_oojah_mqtt.repo nicht möglich: Datei oder Verzeichnis nicht gefunden
                              Loaded plugins: fastestmirror
                              Loading mirror speeds from cached hostfile
                               * base: mirror.inode.at
                               * extras: mirror.digitalnova.at
                               * updates: mirror.digitalnova.at
                              http://mirror.inode.at/data/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.nextlayer.at/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirroraustria.at/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.tugraz.at/mirror/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.schlundtech.de/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://mirror.easyname.at/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centosmirror.netcup.net/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://centos.mirror.iphh.net/CentOS/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://ftp.plusline.de/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
                              Trying other mirror.
                              http://gd.tuwien.ac.at/opsys/linux/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'gd.tuwien.ac.at'"
                              Trying other mirror.
                              Setting up Install Process
                              No package libmosquitto1 available.
                              No package libmosquitto-devel available.
                              No package mosquitto-clients available.
                              Error: Nothing to do
                              Cannot find config.m4.
                              Make sure that you run '/usr/bin/phpize' in the top level source directory of the module
                              
                              19001051_install.sh: Zeile 13: ./configure: Datei oder Verzeichnis nicht gefunden
                              make: *** Keine Targets angegeben und keine »make«-Steuerdatei gefunden.  Schluss.
                              make: *** Keine Regel, um »install« zu erstellen.  Schluss.
                              [root@edomi tmp]#

                              Kommentar


                                Kann es sein, dass du nicht CentOS 6.5 einsetzt sondern auf 6.9 bist. Sieht für mich so aus als gäbe es da Probleme mit den Mirrors, wenn du Pakete installierst. Daher werden die Pakete auch nicht gefunden. Sieht also eher nach einem Problem in deinem Setup aus. Du musst die yum Repos anpassen, so dass ein Mirror für CentOS 6.9 verfügbar ist.

                                Und beim "git clone ..." scheint es auch Probleme zu geben. Mach daher zuerst mal ein "yum update nss".

                                Kommentar

                                Lädt...
                                X