Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. anwa

    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

    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 25
    • Best 2
    • Groups 1

    anwa

    @anwa

    4
    Reputation
    20
    Profile views
    25
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    anwa Follow
    Starter

    Best posts made by anwa

    • RE: Adapter: ioBroker.unifi

      Hallo,

      ich habe den Fehler gefunden. Ich habe in der Firewall alle Kommunikation zwischen den VLANs geblockt.
      Außerdem habe ich allen Verkehr zu den Gateways geblockt.
      Da wo nötig mache ich gezielt mit einer Regel auf.
      Soweit so gut 😳
      Allerdings habe ich die Allow-Regel von ioBroker zu UDM-PRO in LAN-IN gemacht... die gehört aber in LAN-Local 😬
      Ist halt bei Unifi etwas seltsam gelöst mit der Firewall...
      Hoffe das hilft den ein oder anderen.

      Gruß
      Andreas

      PS: Toll wie schnell hier Antworten kommen, vielen Dank dafür.
      PPS: Unifi-Protect geht jetzt auch wieder 😳

      posted in ioBroker Allgemein
      A
      anwa
    • [Anleitung] Ubuntu/Debian Update Script

      Hallo,

      ich wollte hier mal mein Script zum updaten von Debian basierten Systemen vorstellen.
      Ist nicht wirklich von mir, hab ich irgendwann mal im Netz gefunden, benutze ich auf all meinen Rechnern.

      Script anlegen:

      sudo nano /usr/local/bin/update
      

      Dann folgenden Text rein kopieren:

      #!/bin/bash
      # if not root, run as root
      if (( $EUID != 0 )); then
           sudo /usr/local/bin/update
           exit
      fi
      
      TEXT_RESET='\e[0m'
      TEXT_YELLOW='\e[0;33m'
      TEXT_RED_B='\e[1;31m'
      
      sudo apt update
      echo -e $TEXT_YELLOW
      echo 'APT update finished...'
      echo -e $TEXT_RESET
      
      #sudo apt dist-upgrade
      apt -y dist-upgrade --auto-remove --purge echo -e $TEXT_YELLOW echo 'APT distributive upgrade finished...'
      echo -e $TEXT_RESET
      
      sudo apt upgrade
      echo -e $TEXT_YELLOW
      echo 'APT upgrade finished...'
      echo -e $TEXT_RESET
      
      sudo apt autoremove
      echo -e $TEXT_YELLOW
      echo 'APT auto remove finished...'
      echo -e $TEXT_RESET
      
      sudo apt clean
      echo -e $TEXT_YELLOW
      echo 'APT clean finished...'
      echo -e $TEXT_RESET
      
      if [ -f /var/run/reboot-required ]; then
           echo -e $TEXT_RED_B
           echo 'Reboot required!'
           echo -e $TEXT_RESET
      fi
      

      Anschließend muss das Script noch ausführbar gemacht werden:

      sudo chmod +x /usr/local/bin/update
      

      Das war's. zukünftig genügt ein 'update' um das System auf den neuesten Stand zu bringen.

      Gruß
      Andreas

      posted in ioBroker Allgemein
      A
      anwa

    Latest posts made by anwa

    • RE: Beta Test js-controller Kiera (v6.0)

      E-Charts (echarts) 1.7.2

      host.ioBroker
      2024-06-11 21:06:38.263	info	Restart adapter system.adapter.echarts.0 because enabled
      
      host.ioBroker
      2024-06-11 21:06:38.263	error	instance system.adapter.echarts.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
      
      host.ioBroker
      2024-06-11 21:06:38.263	error	Caught by controller[0]: Node.js v20.14.0
      
      host.ioBroker
      2024-06-11 21:06:38.263	error	Caught by controller[0]: at node:internal/main/run_main_module:28:49
      
      host.ioBroker
      2024-06-11 21:06:38.263	error	Caught by controller[0]: at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:174:12)
      
      host.ioBroker
      2024-06-11 21:06:38.262	error	Caught by controller[0]: at Module._load (node:internal/modules/cjs/loader:1024:12)
      
      host.ioBroker
      2024-06-11 21:06:38.262	error	Caught by controller[0]: at Module.load (node:internal/modules/cjs/loader:1208:32)
      
      host.ioBroker
      2024-06-11 21:06:38.262	error	Caught by controller[0]: at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
      
      host.ioBroker
      2024-06-11 21:06:38.262	error	Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1358:14)
      
      host.ioBroker
      2024-06-11 21:06:38.262	error	Caught by controller[0]: at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.echarts/main.js:325:5)
      
      host.ioBroker
      2024-06-11 21:06:38.262	error	Caught by controller[0]: at startAdapter (/opt/iobroker/node_modules/iobroker.echarts/main.js:70:15)
      
      host.ioBroker
      2024-06-11 21:06:38.262	error	Caught by controller[0]: TypeError: utils.Adapter is not a constructor
      
      host.ioBroker
      2024-06-11 21:06:38.262	error	Caught by controller[0]: ^
      
      host.ioBroker
      2024-06-11 21:06:38.262	error	Caught by controller[0]: adapter = new utils.Adapter(options);
      
      host.ioBroker
      2024-06-11 21:06:38.262	error	Caught by controller[0]: /opt/iobroker/node_modules/iobroker.echarts/main.js:70
      
      host.ioBroker
      2024-06-11 21:06:37.428	info	instance system.adapter.echarts.0 started with pid 212103
      
      host.ioBroker
      2024-06-11 21:06:36.303	info	"system.adapter.echarts.0" enabled
      
      
      posted in Tester
      A
      anwa
    • RE: Beta Test js-controller Kiera (v6.0)

      Kalender (calendar) 1.2.0

      host.ioBroker
      2024-06-11 21:04:44.153	info	Restart adapter system.adapter.calendar.0 because enabled
      
      host.ioBroker
      2024-06-11 21:04:44.153	error	instance system.adapter.calendar.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
      
      host.ioBroker
      2024-06-11 21:04:44.153	error	Caught by controller[0]: Node.js v20.14.0
      
      host.ioBroker
      2024-06-11 21:04:44.153	error	Caught by controller[0]: at node:internal/main/run_main_module:28:49
      
      host.ioBroker
      2024-06-11 21:04:44.153	error	Caught by controller[0]: at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:174:12)
      
      host.ioBroker
      2024-06-11 21:04:44.153	error	Caught by controller[0]: at Module._load (node:internal/modules/cjs/loader:1024:12)
      
      host.ioBroker
      2024-06-11 21:04:44.153	error	Caught by controller[0]: at Module.load (node:internal/modules/cjs/loader:1208:32)
      
      host.ioBroker
      2024-06-11 21:04:44.153	error	Caught by controller[0]: at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
      
      host.ioBroker
      2024-06-11 21:04:44.153	error	Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1358:14)
      
      host.ioBroker
      2024-06-11 21:04:44.153	error	Caught by controller[0]: at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.calendar/main.js:17:30)
      
      host.ioBroker
      2024-06-11 21:04:44.153	error	Caught by controller[0]: TypeError: Class extends value #<Object> is not a constructor or null
      
      host.ioBroker
      2024-06-11 21:04:44.153	error	Caught by controller[0]: ^
      
      host.ioBroker
      2024-06-11 21:04:44.152	error	Caught by controller[0]: class Calendar extends utils.Adapter {
      
      host.ioBroker
      2024-06-11 21:04:44.152	error	Caught by controller[0]: /opt/iobroker/node_modules/iobroker.calendar/main.js:17
      
      

      Vermutlich der gleiche Fehler...

      posted in Tester
      A
      anwa
    • RE: Beta Test js-controller Kiera (v6.0)

      Sorry, immer die neueste... 0.4.14

      posted in Tester
      A
      anwa
    • RE: Beta Test js-controller Kiera (v6.0)

      Hallo,
      hat hier noch jemand Probleme mit SourceAnalytix?

      host.ioBroker  2024-06-11 20:41:00.166	info	Restart adapter system.adapter.sourceanalytix.0 because enabled
      host.ioBroker  2024-06-11 20:41:00.166	error	instance system.adapter.sourceanalytix.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
      host.ioBroker  2024-06-11 20:41:00.166	error	Caught by controller[0]: Node.js v20.14.0
      host.ioBroker  2024-06-11 20:41:00.166	error	Caught by controller[0]: at node:internal/main/run_main_module:28:49
      host.ioBroker  2024-06-11 20:41:00.166	error	Caught by controller[0]: at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:174:12)
      host.ioBroker  2024-06-11 20:41:00.166	error	Caught by controller[0]: at Module._load (node:internal/modules/cjs/loader:1024:12)
      host.ioBroker  2024-06-11 20:41:00.166	error	Caught by controller[0]: at Module.load (node:internal/modules/cjs/loader:1208:32)
      host.ioBroker  2024-06-11 20:41:00.166	error	Caught by controller[0]: at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
      host.ioBroker  2024-06-11 20:41:00.166	error	Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1358:14)
      host.ioBroker  2024-06-11 20:41:00.165	error	Caught by controller[0]: at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.sourceanalytix/main.js:31:36)
      host.ioBroker  2024-06-11 20:41:00.165	error	Caught by controller[0]: TypeError: Class extends value #<Object> is not a constructor or null
      host.ioBroker  2024-06-11 20:41:00.165	error	Caught by controller[0]: ^
      host.ioBroker  2024-06-11 20:41:00.165	error	Caught by controller[0]: class Sourceanalytix extends utils.Adapter {
      host.ioBroker  2024-06-11 20:41:00.165	error	Caught by controller[0]: /opt/iobroker/node_modules/iobroker.sourceanalytix/main.js:31
      host.ioBroker  2024-06-11 20:40:59.291	info	instance system.adapter.sourceanalytix.0 started with pid 207189
      

      Core adapters versions
      js-controller: 6.0.1
      admin: 7.0.1
      javascript: 8.5.2

      Calendar, eCharts machen auch probleme.

      posted in Tester
      A
      anwa
    • RE: Adapter: ioBroker.unifi

      Hallo,

      ich habe den Fehler gefunden. Ich habe in der Firewall alle Kommunikation zwischen den VLANs geblockt.
      Außerdem habe ich allen Verkehr zu den Gateways geblockt.
      Da wo nötig mache ich gezielt mit einer Regel auf.
      Soweit so gut 😳
      Allerdings habe ich die Allow-Regel von ioBroker zu UDM-PRO in LAN-IN gemacht... die gehört aber in LAN-Local 😬
      Ist halt bei Unifi etwas seltsam gelöst mit der Firewall...
      Hoffe das hilft den ein oder anderen.

      Gruß
      Andreas

      PS: Toll wie schnell hier Antworten kommen, vielen Dank dafür.
      PPS: Unifi-Protect geht jetzt auch wieder 😳

      posted in ioBroker Allgemein
      A
      anwa
    • RE: Adapter: ioBroker.unifi

      @meister-mopper
      Danke für die Antwort.

      Ich habe den Quelltext mal kurz analisiert und festgestellt das er am Login hängt.
      Leider musste ich feststellen, das es wohl an der Firewall liegt. Ich habe zwar extra eine Regel erstellt um dem ioBroker den Zugriff auf die UDM-Pro zu gewähren, aber die scheint nicht richtig zu funktionieren.

      Sorry, mein Fehler 😕 ich habe ihn nur noch nicht gefunden 😬 doofes neues UI

      Gruß
      Andreas

      posted in ioBroker Allgemein
      A
      anwa
    • RE: Adapter: ioBroker.unifi

      @meister-mopper Generaleinstellungen?
      Also auf der Adminpage

      • Ip: klar ist 10.10.0.1
      • Port: leer bzw. auch 443 probiert
      • Name/PW eh klar
      • SSL ignorieren ist angehakt
      • Interval 60s

      Oder meintest du was anderes...

      @ilovegym siehe oben... Ja

      Danke
      Andreas

      posted in ioBroker Allgemein
      A
      anwa
    • RE: Adapter: ioBroker.unifi

      Hallo,
      ich hoffe mir kann einer helfen.

      Seit Umstellung auf die UDM-Pro laufen bei mir die Unifi adapter nicht mehr.

      2022-06-10 07:42:17.406 - error: unifi.0 (440738) Error site undefined: Connection timedout.

      Ich habe:

      • UniFi OS UDM Pro 1.12.22
      • Network 7.1.66
      • Protect 2.0.1
      • ioBroker Administrator ACTIVE Local Access
      • unifi.0 v0.6.1

      https://10.10.0.1/network/default/clients
      Also sollte die site "default" sein...

      Bin für jeden Tip dankbar.

      Gruß
      Andreas

      posted in ioBroker Allgemein
      A
      anwa
    • RE: Poollab / Primelab integrieren

      @100prznt Danke für deine Anpassung des Adapters. Hast du Pläne das in den original Adapter als Pullrequest zu hinterlegen? Wäre gut wenn es nur einen Adapter gäbe der gepflegt wird.
      Dein Graph schaut gut aus, würdest du verraten (Script) wie du das aktive Chlor berechnest? Würde sicherlich einigen hier helfen.

      Griuß
      Andreas

      posted in Entwicklung
      A
      anwa
    • RE: [ESPHome] Beta release

      @dutchman Hallo, vielen Dank das du dich dem Thema ESPhome angenommen hast. 👍
      Ich benutze viele Tasmota Geräte, aber bei eigenen Geräten (Wemos D1 Mini / 32) habe ich immer neidisch auf HASS/ESPhome geschielt.
      Mir gefiel neben der Konfig als Text(yaml) und damit verbundener Git Möglichkeit vor allem das man (z.B. bei Displays) ganz einfach Daten aus HASS in einem Sensor laden kann.

      sensor:
        - platform: homeassistant
          id: inside_temperature
          entity_id: sensor.vit_inne_temperature
          internal: true
      

      Wird es das in diesem Adapter auch geben?

      posted in Tester
      A
      anwa
    Community
    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
    The ioBroker Community 2014-2023
    logo