Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. hm-rpc Probleme

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    hm-rpc Probleme

    This topic has been deleted. Only users with topic management privileges can see it.
    • Glasfaser
      Glasfaser @Mephisto090 last edited by

      @mephisto090 sagte in hm-rpc Probleme:

      sprich kein https

      Schalte https in der CCU aus und in der ioBroker instanz auch , dann noch den port von 42010 auf 2010 ändern .
      Was ist dann .

      1 Reply Last reply Reply Quote 0
      • Glasfaser
        Glasfaser @Mephisto090 last edited by

        @mephisto090 sagte in hm-rpc Probleme:

        irgendwie keine Verbindung

        Nebenfrage , was ich so nicht sehe , hast du überhaupt Homematic IP Geräte an der CCU angemeldet !?

        M 1 Reply Last reply Reply Quote 0
        • M
          Mephisto090 @Glasfaser last edited by Mephisto090

          @glasfaser said in hm-rpc Probleme:

          @mephisto090 sagte in hm-rpc Probleme:

          irgendwie keine Verbindung

          Nebenfrage , was ich so nicht sehe , hast du überhaupt Homematic IP Geräte an der CCU angemeldet !?

          Ja 🙂

          98ea1f1b-3fc4-4431-abc1-89fc3efde8f7-image.png

          @glasfaser said in hm-rpc Probleme:

          Schalte https in der CCU aus und in der ioBroker instanz auch , dann noch den port von 42010 auf 2010 ändern .
          Was ist dann .

          3219902e-b6ba-4fb1-8ada-75e712ea91f1-image.png
          77f61b75-a39a-4333-8f86-3acd51e2d170-image.png
          Leider nein 😞

          1 Reply Last reply Reply Quote 0
          • Glasfaser
            Glasfaser last edited by

            @mephisto090

            Stelle mal so ein :

            7c487352-1ce6-4424-932e-39e026c34d30-grafik.png

            M 1 Reply Last reply Reply Quote 0
            • Glasfaser
              Glasfaser @Mephisto090 last edited by

              @mephisto090 sagte in hm-rpc Probleme:

              Portfreigabe ioBroker (docker-compose):

              ist deine Liste gekürzt ...
              denn du nutzt Redis , ist der Redis Server außerhalb des Containers !?

              M 1 Reply Last reply Reply Quote 0
              • M
                Mephisto090 @Glasfaser last edited by

                @glasfaser said in hm-rpc Probleme:

                ist deine Liste gekürzt ...
                denn du nutzt Redis , ist der Redis Server außerhalb des Containers !?

                version: "3.4"
                services: 
                  iobroker:
                    container_name: Iobroker
                    image: buanet/iobroker:latest
                    pull_policy: always
                    hostname: iobroker
                    restart: always
                    labels:
                      - "autoheal=true"
                      - "com.centurylinklabs.watchtower.enable=true"
                    healthcheck:
                      test: ["CMD", "curl", "-f", "http://localhost:8081"]
                      interval: 30s
                      timeout: 2s
                      retries: 2
                      start_period: 3m30s
                    networks:
                      io-network:
                        ipv4_address: 172.18.0.2
                    ports:
                      - "1884:1884"
                      - "8081-8083:8081-8083"
                      - "8400:8400"
                      - "42010:42010"
                      - "2010:2010"
                    environment:
                      - IOB_STATESDB_HOST=iobroker-redis
                      - IOB_STATESDB_PORT=6379
                      - IOB_STATESDB_TYPE=redis
                      - IOB_BACKITUP_EXTDB=true
                      - PACKAGES=default-mysql-client redis-tools
                      - TZ=Europe/Berlin
                    volumes:
                      - io-data:/opt/iobroker
                      - userscripts:/opt/userscripts
                    depends_on:
                      redis:
                        condition: service_healthy
                    #mem_swappiness: -1
                  redis:
                    container_name: Iobroker-Redis
                    image: redis:7
                    hostname: iobroker-redis
                    restart: always
                    labels:
                      - "autoheal=true"
                      - "com.centurylinklabs.watchtower.enable=true"
                    healthcheck:
                      test: [ "CMD", "redis-cli", "--raw", "incr", "ping" ]
                      interval: 30s
                      timeout: 2s
                      retries: 2
                      start_period: 20s
                    networks:
                      io-network:
                        ipv4_address: 172.18.0.3
                    volumes:
                      - redis-data:/data
                    #mem_swappiness: -1    
                    
                  deconz:
                    image: deconzcommunity/deconz:stable
                    container_name: Iobroker-Deconz
                    hostname: iobroker-deconz
                    pull_policy: always
                    restart: always
                    privileged: true                # This is important! Without it, the deCONZ image won't be able to connect to Conbee II.
                    ports: 
                      - 4080:80
                      - 4443:443
                      - 5900:5900
                    volumes:
                      - /etc/localtime:/etc/localtime:ro
                      - deconz:/opt/deCONZ
                    devices:
                      - /dev/ttyACM0                # This is the USB device that Conbee II is running on.
                    environment:
                      - TZ=Europe/Berlin
                      - DECONZ_WEB_PORT=80
                      - DECONZ_WS_PORT=443
                      - DEBUG_INFO=1
                      - DEBUG_APS=0
                      - DEBUG_ZCL=0
                      - DEBUG_ZDP=0
                      - DEBUG_OTA=0
                      - DEBUG_HTTP=0
                      - DECONZ_DEVICE=/dev/ttyACM0   # This is the USB device that Conbee II is running on.
                      - DECONZ_START_VERBOSE=0
                      - DECONZ_VNC_MODE=1
                      - DECONZ_VNC_PORT=5900
                      - DECONZ_VNC_PASSWORD=*****
                    logging:
                      driver: "json-file"
                      options:
                        max-size: "50m"
                    networks:
                      io-network:
                        ipv4_address: 172.18.0.4
                      
                volumes:
                  userscripts:
                  io-data:
                  redis-data:
                  deconz:
                  
                networks:
                  io-network:
                    name: io-network
                    driver: bridge
                    ipam:
                      config:
                        - subnet: 172.18.0.0/16
                          gateway: 172.18.0.1
                          ip_range: 172.18.0.1/24
                
                Glasfaser 1 Reply Last reply Reply Quote 0
                • M
                  Mephisto090 @Glasfaser last edited by

                  @glasfaser said in hm-rpc Probleme:

                  @mephisto090

                  Stelle mal so ein :

                  7c487352-1ce6-4424-932e-39e026c34d30-grafik.png

                  geht leider auch nicht. Weder mit 2010 noch mit 42010

                  hm-rpc.0
                  2023-12-22 19:32:15.234	error	Cannot call init: [http://192.168.178.61:42010, ""] Unknown XML-RPC tag 'TITLE'
                  
                  hm-rpc.0
                  2023-12-22 19:31:47.641	error	Init not possible, going to stop: Unknown XML-RPC tag 'TITLE'
                  
                  hm-rpc.0
                  2023-12-22 19:31:10.669	error	Cannot call init: [http://192.168.178.61:2010, ""] Unknown XML-RPC tag 'TITLE'
                  
                  hm-rpc.0
                  2023-12-22 19:30:52.378	error	Init not possible, going to stop: Unknown XML-RPC tag 'TITLE'
                  
                  hm-rpc.0
                  2023-12-22 19:30:18.613	error	Cannot call init: [http://192.168.178.61:2010, ""] Unknown XML-RPC tag 'TITLE'
                  
                  hm-rpc.0
                  2023-12-22 19:30:18.591	error	Init not possible, going to stop: Unknown XML-RPC tag 'TITLE'
                  
                  hm-rpc.0
                  2023-12-22 19:29:48.600	error	Init not possible, going to stop: Unknown XML-RPC tag 'TITLE'
                  
                  Homoran 1 Reply Last reply Reply Quote 0
                  • Homoran
                    Homoran Global Moderator Administrators @Mephisto090 last edited by Homoran

                    @mephisto090 sagte in hm-rpc Probleme:

                    Unknown XML-RPC tag 'TITLE

                    Diese Meldung kommt von der CCU, wenn sie im Bluescreen steht.
                    Entweder noch im Booten, oder nicht richtig eingeloggt.
                    Muss etwas mit den Credentials zu tun haben

                    was steht im syslog der CCU?

                    M 1 Reply Last reply Reply Quote 0
                    • M
                      Mephisto090 @Homoran last edited by

                      @homoran said in hm-rpc Probleme:

                      @mephisto090 sagte in hm-rpc Probleme:

                      Unknown XML-RPC tag 'TITLE

                      Diese Meldung kommt von der CCU, wenn sie im Bluescreen steht.
                      Entweder noch im Booten, oder nicht richtig eingeloggt.
                      Muss etwas mit den Credentials zu tun haben

                      was steht im syslog der CCU?

                      Der ist lang. Welche stelle willst du haben 🙂

                      Homoran 1 Reply Last reply Reply Quote 0
                      • Homoran
                        Homoran Global Moderator Administrators @Mephisto090 last edited by

                        @mephisto090 sagte in hm-rpc Probleme:

                        Welche stelle willst du haben

                        zu der Zeit wenn der Adapter versucht sich zu verbinden

                        ubecker 1 Reply Last reply Reply Quote 0
                        • ubecker
                          ubecker @Homoran last edited by

                          @homoran ich rate mal, da steht stack overflow. Mal sehen ob ich Recht habe

                          M 1 Reply Last reply Reply Quote 0
                          • M
                            Mephisto090 @ubecker last edited by Mephisto090

                            @homoran said in hm-rpc Probleme:

                            @mephisto090 sagte in hm-rpc Probleme:

                            Welche stelle willst du haben

                            zu der Zeit wenn der Adapter versucht sich zu verbinden

                            @ubecker said in hm-rpc Probleme:

                            @homoran ich rate mal, da steht stack overflow. Mal sehen ob ich Recht habe

                            ***** /var/log/lighttpd-access.log *****
                            [...]
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:43:31 +0100] "POST /esp/system.htm?sid=@Do7MDgegvv@&action=UpdateUI HTTP/2.0" 200 871 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:43:33 +0100] "POST /api/homematic.cgi HTTP/2.0" 200 45 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:43:34 +0100] "POST /esp/system.htm?sid=@Do7MDgegvv@&action=UpdateUI HTTP/2.0" 200 871 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:43:38 +0100] "POST /esp/system.htm?sid=@Do7MDgegvv@&action=UpdateUI HTTP/2.0" 200 871 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:43:38 +0100] "POST /api/homematic.cgi HTTP/2.0" 200 45 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:43:40 +0100] "POST /esp/system.htm?sid=@Do7MDgegvv@&action=UpdateUI HTTP/2.0" 200 871 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:43:43 +0100] "POST /api/homematic.cgi HTTP/2.0" 200 45 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:43:43 +0100] "POST /esp/system.htm?sid=@Do7MDgegvv@&action=UpdateUI HTTP/2.0" 200 871 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:43:47 +0100] "POST /esp/system.htm?sid=@Do7MDgegvv@&action=UpdateUI HTTP/2.0" 200 871 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:43:48 +0100] "POST /api/homematic.cgi HTTP/2.0" 200 45 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:43:49 +0100] "POST /esp/system.htm?sid=@Do7MDgegvv@&action=UpdateUI HTTP/2.0" 200 871 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:43:53 +0100] "POST /esp/system.htm?sid=@Do7MDgegvv@&action=UpdateUI HTTP/2.0" 200 871 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:43:53 +0100] "POST /api/homematic.cgi HTTP/2.0" 200 45 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.61 192.168.178.96:42010 - [28/Dec/2023:10:44:00 +0100] "POST / HTTP/1.1" 401 347 "-" "NodeJS XML-RPC Client"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:02 +0100] "POST /api/homematic.cgi HTTP/2.0" 200 47 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:02 +0100] "POST /api/homematic.cgi HTTP/2.0" 200 47 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:02 +0100] "POST /api/homematic.cgi HTTP/2.0" 200 47 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:02 +0100] "POST /api/homematic.cgi HTTP/2.0" 200 47 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.61 192.168.178.96:42010 - [28/Dec/2023:10:44:14 +0100] "POST / HTTP/1.1" 401 347 "-" "NodeJS XML-RPC Client"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:18 +0100] "POST /esp/system.htm?sid=@Do7MDgegvv@&action=UpdateUI HTTP/2.0" 200 871 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:18 +0100] "POST /api/homematic.cgi HTTP/2.0" 200 45 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:19 +0100] "POST /esp/system.htm?sid=@Do7MDgegvv@&action=UpdateUI HTTP/2.0" 200 871 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:20 +0100] "POST /config/cp_maintenance.cgi?sid=@Do7MDgegvv@ HTTP/2.0" 200 17 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:22 +0100] "POST /esp/system.htm?sid=@Do7MDgegvv@&action=UpdateUI HTTP/2.0" 200 871 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:22 +0100] "POST /api/homematic.cgi HTTP/2.0" 200 45 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:23 +0100] "POST /config/cp_maintenance.cgi?sid=@Do7MDgegvv@ HTTP/2.0" 200 14528 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:23 +0100] "POST /api/homematic.cgi HTTP/2.0" 200 154 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:25 +0100] "POST /esp/system.htm?sid=@Do7MDgegvv@&action=UpdateUI HTTP/2.0" 200 871 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:25 +0100] "GET /pages/index.htm?sid=@Do7MDgegvv@ HTTP/2.0" 200 11638 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:25 +0100] "GET /webui/css/extern/nfs_datepicker.css HTTP/2.0" 200 2685 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            192.168.178.59 homematic-raspi - [28/Dec/2023:10:44:25 +0100] "GET /webui/css/extern/jquery.powertip.css HTTP/2.0" 200 1572 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
                            [...]
                            
                            ***** /var/log/lighttpd-error.log *****
                            2023-12-22 22:55:27: (../src/server.c.1704) server started (lighttpd/1.4.69)
                            2023-12-22 22:56:00: (../src/server.c.1057) [note] graceful shutdown started
                            2023-12-22 22:56:00: (../src/server.c.1014) [note] pid 1865 continuing to handle 0 connection(s) in progress
                            2023-12-22 22:56:00: (../src/server.c.1704) server started (lighttpd/1.4.69)
                            2023-12-22 22:56:00: (../src/server.c.1057) [note] graceful shutdown started
                            2023-12-22 22:56:00: (../src/server.c.2078) server stopped by UID = 0 PID = 1521
                            2023-12-28 10:44:00: (../src/mod_auth.c.850) password doesn't match for / username: Y\rTKVYU\x14 IP: 192.168.178.61
                            2023-12-28 10:44:14: (../src/mod_auth.c.850) password doesn't match for / username: Y\rTKVYU\x14 IP: 192.168.178.61
                            

                            So Weihnachten ist nun rum und jetzt hatte ich zeit euch mal den Log zu senden. 😄

                            Ich musste den Log stark einkürzen und deswegen nur die stelle wo XML-RPC auftaucht.

                            Ich habe noch ein Log gefunden wo er schreibt password doesn't match was aber eigentlich nicht stimmen kann, da ich das Passwort eins zu eins kopiert habe und sogar schon mal ein User mit Benutzername Test und Passwort Test angelegt hatte.
                            Y\rTKVYU\x14 Das ist irgendwie auch nicht der Username mit dem ich mich versuche einzuloggen, wie man weiter oben auf den Bildern sehen kann. Es kann natürlich sein, dass er im Log verschlüsselt wird.

                            @Bluefox wenn ich das richtig gesehen habe ist dies ja auch dein Adapter. Hast du eine Idee ob es ein Bug vom Adapter sein könnte?

                            1 Reply Last reply Reply Quote 0
                            • Homoran
                              Homoran Global Moderator Administrators last edited by

                              @mephisto090 sagte in hm-rpc Probleme:

                              Ich musste den Log stark einkürzen und deswegen nur die stelle wo XML-RPC auftaucht.

                              nicht richtig.
                              interessant ist alles

                              @homoran sagte in hm-rpc Probleme:

                              zu der Zeit wenn der Adapter versucht sich zu verbinden

                              @mephisto090 sagte in hm-rpc Probleme:

                              Log gefunden wo er schreibt password doesn't match was aber eigentlich nicht stimmen kann,

                              was nicht kann sein, was nicht sein darf???

                              logs lügen nicht

                              @mephisto090 sagte in hm-rpc Probleme:

                              Das ist irgendwie auch nicht der Username mit dem ich mich versuche einzuloggen,

                              der steht im rpc Adapter! und muss auf der CCU auch entsprechend existieren.

                              @mephisto090 sagte in hm-rpc Probleme:

                              Hast du eine Idee ob es ein Bug vom Adapter sein könnte?

                              nein

                              M 1 Reply Last reply Reply Quote 0
                              • M
                                Mephisto090 @Homoran last edited by

                                @homoran said in hm-rpc Probleme:

                                der steht im rpc Adapter! und muss auf der CCU auch entsprechend existieren.

                                6a14cffb-ba73-41ef-ae77-685c8c1d7d6e-image.png

                                Angelegt ist er

                                @homoran said in hm-rpc Probleme:

                                nicht richtig.
                                interessant ist alles

                                Habe 5MB Log. Leider kann ich die nicht hier rein packen oder hast du eine Idee?

                                Homoran 1 Reply Last reply Reply Quote 0
                                • Homoran
                                  Homoran Global Moderator Administrators @Mephisto090 last edited by

                                  @mephisto090 sagte in hm-rpc Probleme:

                                  hast du eine Idee?

                                  nicht aus dem Zusammenhang reissen!

                                  @homoran sagte in hm-rpc Probleme:

                                  interessant ist alles
                                  @homoran sagte in hm-rpc Probleme:

                                  zu der Zeit wenn der Adapter versucht sich zu verbinden

                                  M 1 Reply Last reply Reply Quote 0
                                  • M
                                    Mephisto090 @Homoran last edited by

                                    @homoran said in hm-rpc Probleme:

                                    @mephisto090 sagte in hm-rpc Probleme:

                                    hast du eine Idee?

                                    nicht aus dem Zusammenhang reissen!

                                    @homoran sagte in hm-rpc Probleme:

                                    interessant ist alles
                                    @homoran sagte in hm-rpc Probleme:

                                    zu der Zeit wenn der Adapter versucht sich zu verbinden

                                    ich starte jetzt die Zentrale neu und versuche somit den Log klein zu halten

                                    M Homoran 2 Replies Last reply Reply Quote 0
                                    • M
                                      Mephisto090 @Mephisto090 last edited by

                                      @mephisto090 said in hm-rpc Probleme:

                                      @homoran said in hm-rpc Probleme:

                                      @mephisto090 sagte in hm-rpc Probleme:

                                      hast du eine Idee?

                                      nicht aus dem Zusammenhang reissen!

                                      @homoran sagte in hm-rpc Probleme:

                                      interessant ist alles
                                      @homoran sagte in hm-rpc Probleme:

                                      zu der Zeit wenn der Adapter versucht sich zu verbinden

                                      ich starte jetzt die Zentrale neu und versuche somit den Log klein zu halten

                                      homematic-raspi-2023-12-28 (4).log

                                      1 Reply Last reply Reply Quote 0
                                      • Homoran
                                        Homoran Global Moderator Administrators @Mephisto090 last edited by

                                        @mephisto090 sagte in hm-rpc Probleme:

                                        ich starte jetzt die Zentrale neu und versuche somit den Log klein zu halten

                                        wieso?
                                        starte die Instanz neu und kopiere nur den entsprechenden Zeitbeteich hier in code-tags rein

                                        M 1 Reply Last reply Reply Quote 0
                                        • M
                                          Mephisto090 @Homoran last edited by

                                          @mephisto090 said in hm-rpc Probleme:

                                          @mephisto090 said in hm-rpc Probleme:

                                          @homoran said in hm-rpc Probleme:

                                          @mephisto090 sagte in hm-rpc Probleme:

                                          hast du eine Idee?

                                          nicht aus dem Zusammenhang reissen!

                                          @homoran sagte in hm-rpc Probleme:

                                          interessant ist alles
                                          @homoran sagte in hm-rpc Probleme:

                                          zu der Zeit wenn der Adapter versucht sich zu verbinden

                                          ich starte jetzt die Zentrale neu und versuche somit den Log klein zu halten

                                          homematic-raspi-2023-12-28 (4).log

                                          @homoran said in hm-rpc Probleme:

                                          @mephisto090 sagte in hm-rpc Probleme:

                                          ich starte jetzt die Zentrale neu und versuche somit den Log klein zu halten

                                          wieso?
                                          starte die Instanz neu und kopiere nur den entsprechenden Zeitbeteich hier in code-tags rein

                                          Dafür hast jetzt den ganzen Log 🙂

                                          Glasfaser Homoran 2 Replies Last reply Reply Quote 0
                                          • Glasfaser
                                            Glasfaser @Mephisto090 last edited by

                                            @mephisto090 sagte in hm-rpc Probleme:

                                            Dafür hast jetzt den ganzen Log

                                            Erlich .... nicht jeder kann so eine Texdatei öffnen ... !?

                                            Teste mit einem Ping bzw. ob auch der Port erreichbar ist

                                            ioBrocker Docker > Raspberry

                                            M 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate
                                            FAQ Cloud / IOT
                                            HowTo: Node.js-Update
                                            HowTo: Backup/Restore
                                            Downloads
                                            BLOG

                                            564
                                            Online

                                            31.9k
                                            Users

                                            80.2k
                                            Topics

                                            1.3m
                                            Posts

                                            5
                                            73
                                            4249
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo