Community
    • Categories
    • Recent
    • Popular
    • Users
    • Search
    • Register
    • Login
    1. Home
    2. Philipp Hörselmann
    Offline
    • Profile
    • Following 2
    • Followers 2
    • Topics 0
    • Posts 180
    • Groups 3

    Philipp Hörselmann

    @Philipp Hörselmann

    14
    Reputation
    99
    Profile views
    180
    Posts
    2
    Followers
    2
    Following
    Joined
    Last Online

    Philipp Hörselmann Unfollow Follow
    Entwicklungspartner i-doit Team administrators

    Best posts made by Philipp Hörselmann

    • RE: (Massen)Import von Kabeln mit speziellen Namen

      Hallo @Alexander-Fritsch
      ich denke das sollte mit dem Import-Modul "Verkabelung" realisiert werden können.
      Dies findest du auch unter Import.
      Im folgenden Artikel findest du da auch weitere Informationen.
      https://kb.i-doit.com/display/de/Kabel-Patches+und+-wege#Kabel-Patchesund-wege-Verkabelungsimport
      Evtl. hilft dir das weiter.

      Viele Grüße
      Phil

      posted in Allgemein
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: Minor release i-doit open 1.14.2

      @Claudia-Isenberg wuhu 🙂

      posted in General
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: API add-on bug with password CATG

      Hey,
      unfortunately nobody answered yet...
      Thank you for the hint.
      Best
      Phil

      posted in Development
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: i-doit auf Azure hosten

      Hallo @Mischa-K ,

      wir haben bisher keine Expertise, i-doit auf der Azure Cloud zu installieren. Es gibt jedoch einen Blog-Artikel, welcher Basis-Informationen zum Betrieb von i-doit auf einem vServer oder einer Cloud (allgemein) mitteilgt -> https://www.i-doit.com/blog/i-doit-installation-auf-cloud-oder-vserver/

      Eine SaaS Version gibt es auch nicht. i-doit kann nur On-Premise genutzt werden (bzw. wie im Blog-Artikel beschrieben) auf einer eigenen Cloud/einem eigenen vServer.

      Viele Grüße
      Phil

      posted in Entwicklung
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: Raumplan löschen

      Moin @Julian
      Raumpläne können ab der Version 1.3 des Raumplan Add-ons gelöscht werden.
      Dazu muss der entsprechende Benutzer die Berechtigungen besitzen. Danach kannst du den betreffenden Raumplan öffnen und dann editieren. Sobald du auf editieren geklickt hast, sollte dort auch der Löschen-Button erscheinen. 😉

      Viele Grüße
      Phil

      posted in Allgemein
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: Update a single-value category with Api

      Hi @mirkomatonti
      does the entry for "assigned_version" is the entry-id or the value in the i-doit gui?
      If 9 is the value which can be selected in the dropdown menu in the gui, you need to write it with quotation marks for the api request
      Extract:

      "data": {
            "application": 5771,
            "assigned_version": "9"       <----------
          },
      

      Furthermore, the update method is deprecated and I recommend to use the save method.
      in your case this would looks like the following snippet:

      {
      	"jsonrpc": "2.0",
      	"method": "cmdb.category.save",
      	"params": {
      		"category": "C__CATG__OPERATING_SYSTEM",
      		"apikey": "*********",
                      "language": en
      		"object": 6531,
      		"data": {
      			"application": 5771,
      			"assigned_version": "9"
      		}
      	},
      	"id": 1
      }
      

      Cheers,
      Phil

      posted in Development
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: Ip-Adresse einem Objekt via API zuweisen

      Hey @mirkomatonti
      folgend findest du ein kurzes Beispiel einem Objekt eine IP zuzuweisen:
      {
      "jsonrpc": "2.0",
      "method": "cmdb.category.save",
      "params": {
      "category": "C__CATG__IP",
      "apikey": "APIKEY",
      "object": OBJECTID,
      "data": {
      "ipv4_address": "12.34.56.189",
      "hostname": "myserver",
      "domain": "domain.name",
      "primary": 1,
      "ipv4_assignment": 2,
      "net_type": 1,
      "active": 1,
      "id": 245
      }
      },
      "id": TENANT-ID
      }

      Viele Grüße
      Phil

      posted in Entwicklung
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: Problem nach Update auf 1.15

      Moin @ckatterl
      es sieht fast danach aus, dass das Update nicht fehlerfrei durchlief.
      Kannst du das idoit-rights Skript einmal ausführen, welches im i-doit Verzeichnis liegt? Mit dem Befehl

      idoit-rights.sh -set
      

      werden die Berechtigungen neu gesetzt.
      Lade dir bitte das aktuellste Paket erneut herunter und installiere das Update dann erneut.

      Vg
      Phil

      posted in Allgemein
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: Update a single-value category with Api

      Hi @mirkomatonti
      that's a bug which was fixed with the latest version of the API (1.11.1) 😉
      I recommend to update both to the actual versions.

      Cheers,
      Phil

      posted in Development
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: I-Doit API cmd.category.save Einträge Aktualisieren

      Moin @lewando
      in der Ausgabe wird eine entry-ID angegeben, welche du für ein Update des bestehenden Eintrages benötigst.
      Wenn du jetzt den folgenden Request um die entry-ID erweiterst, wird dieser Eintrag aktualisiert:

      "version": "2.0",
          "method": "cmdb.category.save",
          "params": {
              "object": 9241,
              "entry": 107,     <---------------
              "data": {
                  "title": "sda",
                  "mount_point" : "/",
                  "system_drive": "Yes",
                  "filesystem": "EXT4",
                  "capacity": 500,
                  "unit": "GB",
                  "serial": "",
                  "assigned_raid": null,
                  "drive_type": "1",
                  "device": null,
                  "raid": null,
                  "ldev": null,
                  "category_const": "",
                  "free_space": null,
                  "free_space_unit": null,
                  "used_space": null,
                  "used_space_unit": null,
                  "firmware": null,
                  "description": "Created WITH API"
              },
              "category": "C__CATG__DRIVE",
              "apikey": "API-KEY",
              "language": "en"
          },
          "id": 1
      }
      

      Damit kannst du dann den Eintrag aktualisieren 😉
      VG
      Phil

      posted in Entwicklung
      Philipp HörselmannP
      Philipp Hörselmann

    Latest posts made by Philipp Hörselmann

    • RE: Unbekannter oder abgelaufener Lizenztoken

      Moin @Gaylord-Fokker
      kannst du bitte mal schauen, ob der Fehler noch so auftritt?
      Bei einer internen Umstellung war die Kommunikation für den Lizenzcheck kurzzeitig nicht verfügbar. Es sollte wieder funktionieren.
      Beste Grüße
      Phil

      posted in Allgemein
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: test update

      Hey @Jung-Hoon-Lee
      you can find manual in our knowledge base.
      The first article will help you to create a backup and the second update is about updating i-doit itself.
      Backups: https://kb.i-doit.com/display/en/Backup+and+Recovery
      Updates: https://kb.i-doit.com/display/en/Update

      Best
      Phil

      posted in General
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: I-doit CMDB queries

      Hello @Barry
      Sorry for the inconvenience. We informed the sales guys to get aback to you asap.
      Regarding the payment I could not help you, I'm sorry.
      The second point, on the other hand, is easy to answer. You can move your i-doit instance as often as you like. As long as you follow the system requirements, there is nothing to stop you. We also provide instructions for moving an instance in our knowledge base. -> https://kb.i-doit.com/pages/viewpage.action?pageId=66355511

      Best
      Phil

      posted in General
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: Lost Connector Outputs in 1.16.3

      Hi @GCTECH
      unfortunately this is a bug in i-doit. We already provided an hotfix for this issue.
      You will find the hotfix named "Cable connections are not displayed when inputs and outputs are connected" here -> https://kb.i-doit.com/display/en/Hotfixes
      Best
      Phil

      posted in General
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: Dokumentation SQL-Server-Lizenzen (Core)

      Moin @hatho
      zum aktuellen Zeitpunkt wäre es nur möglich, dies händisch in einer benutzerdefinierten Kategorie zu dokumentieren. Leider ist die Lizenzlogik momentan noch nicht für Core-Licenses ausgelegt.
      Ist aber geplant und auf der Roadmap 😉

      VG
      Phil

      posted in Allgemein
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: ldap person group

      Hello,

      you can specify the LDAP filter within the server configuration.
      You can configure what the filter should found and therefore what should be imported.
      Did you check out the general configuration of the interface? -> https://kb.i-doit.com/pages/viewpage.action?pageId=37355601

      Best
      Phil

      posted in General
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: Keeping the password hidden

      Hello,

      You have two possibilities here:

      1. If you don't want do make other users able to see the passwords, you can change the permission and set up taht the users are not allowed to see the password category in general
        (the following article will help to understand the authorization system in i-doit -> https://kb.i-doit.com/display/en/Rights+Management)
        or
      2. You can edit the category list to not show the password column.
        Best
        Phil
      posted in General
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: Berichtsmanager

      Hallo,

      du musst zuerst definieren, was angezeigt werden soll.
      Für den Ausgabebereich wählst du die Kategorien -> Attribute, die angezeigt werden sollen und für den Bedingungsbereich kannst du die Bedingungen definieren, nach welchen gefiltert werden soll.
      Der folgende Artikel kann dir bei der ersten Verwendung des Report-Managers helfen -> https://kb.i-doit.com/display/de/Report+Manager.

      Beste Grüße
      Phil

      posted in Allgemein
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: Report Manager

      Hello,

      you need to filter what your report should show you.
      For the output section you select the categories -> attributes which should be displayed and for the condition section you can define the conditions what should be filtered.
      The following article will help and explain how to use the report manager -> https://kb.i-doit.com/display/en/Report+Manager

      Best
      Phil

      posted in General
      Philipp HörselmannP
      Philipp Hörselmann
    • RE: Report Manager

      Hi @Oya-Erdayı
      you need to create a report category at first.
      The "variable report" checkbox is is checked automatically based on the report conditions.
      The following article may help you regarding variable reports : https://kb.i-doit.com/display/en/Variable+Reports
      Best
      Phil

      posted in General
      Philipp HörselmannP
      Philipp Hörselmann