Community
    • Categories
    • Recent
    • Popular
    • Users
    • Search
    • Register
    • Login
    1. Home
    2. svN_O
    S
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 5
    • Groups 0

    svN_O

    @svN_O

    0
    Reputation
    37
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online
    Age 24

    svN_O Unfollow Follow

    Latest posts made by svN_O

    • RE: Abfrage Editor

      Auch wenn ich diese Abfrage mache:

      SELECT DD1.isys_obj__title AS 'Server', DD2.isys_obj__title AS 'OS', DD3.isys_obj__title AS 'Software'
      FROM isys_catg_relation_list
      LEFT JOIN isys_obj DD1 ON isys_catg_relation_list.isys_catg_relation_list__isys_obj__id__master = DD1.isys_obj__id
      INNER JOIN isys_obj DD2 ON isys_catg_relation_list.isys_catg_relation_list__isys_obj__id__slave = DD2.isys_obj__id
      INNER JOIN isys_obj DD3 ON isys_catg_relation_list.isys_catg_relation_list__isys_obj__id__slave = DD2.isys_obj__id
      WHERE DD1.isys_obj__isys_obj_type__id = 5
      AND DD1.isys_obj__title like 'nagiosnode'
      AND DD2.isys_obj__isys_obj_type__id = 35
      AND DD3.isys_obj__isys_obj_type__id = 2
      Order by Server
      

      zeigt er mir die komplette Software an die im iDoit ist, nicht nur die vom "nagiosnode"… Es zeigt mir eben an das in Spalte 3 (DD3) alles anzeigt werden soll mit id = 2.. Jedoch brauche ich nur die Software die auf dem nagiosnode installier ist.. Wie bekomme ich dann nur diese Information raus?

      Danke

      posted in Betrieb
      S
      svN_O
    • RE: Abfrage Editor

      Hey,

      danke schon mal, jedoch führt keines der JOIN Befehle zum gewünschten Ergebnis. Habe alles ausprobiert. LEFT JOIN, RIGHT JOIN, OUTER JOIN, FULL OUTER JOIN, LEFT OUTER JOIN, INNER JOIN. Zeigt mir bei Servern auf denen die Software nicht installiert ist, immernoch die Software an…

      SELECT DISTINCT DD1.isys_obj__title AS 'Server', DD2.isys_obj__title AS 'Betriebssystem', DD3.isys_obj__title AS 'Software',DD4.isys_catg_accounting_list__inventory_no AS 'Inventarnummer'
      FROM isys_catg_relation_list
      LEFT JOIN isys_obj DD1 ON isys_catg_relation_list.isys_catg_relation_list__isys_obj__id__master = DD1.isys_obj__id
      LEFT JOIN isys_obj DD2 ON isys_catg_relation_list.isys_catg_relation_list__isys_obj__id__slave = DD2.isys_obj__id
      INNER JOIN isys_obj DD3 ON isys_catg_relation_list.isys_catg_relation_list__isys_obj__id__slave = DD2.isys_obj__id
      LEFT JOIN isys_catg_accounting_list DD4 ON isys_catg_accounting_list__isys_obj__id = DD1.isys_obj__id
      WHERE DD1.isys_obj__isys_obj_type__id =5
      AND DD2.isys_obj__isys_obj_type__id = 35
      AND DD3.isys_obj__isys_obj_type__id = 2
      AND DD3.isys_obj__title = 'Programmxyz' 
      Order by Server, Software 
      

      Habe das INNER JOIN an der richtigen Stelle verändert oder?

      Danke

      Grüße

      Sven

      posted in Betrieb
      S
      svN_O
    • RE: Abfrage Editor

      Okay, danke schonmal für die Hilfe. Jetzt habe ich aber noch ein anderes Problem, unzwar:

      Will ich einen Report erstellen der mit die Server zeigt mit installierter Software jedoch ohne Updates. Jetzt habe ich folgende Abfrage erstellt:

      
      SELECT DISTINCT DD1.isys_obj__title AS 'Server', DD2.isys_obj__title AS 'Betriebssystem', DD3.isys_obj__title AS 'Software',DD4.isys_catg_accounting_list__inventory_no AS 'Inventarnummer'
      FROM isys_catg_relation_list
      LEFT JOIN isys_obj DD1 ON isys_catg_relation_list.isys_catg_relation_list__isys_obj__id__master = DD1.isys_obj__id
      LEFT JOIN isys_obj DD2 ON isys_catg_relation_list.isys_catg_relation_list__isys_obj__id__slave = DD2.isys_obj__id
      LEFT JOIN isys_obj DD3 ON isys_catg_relation_list.isys_catg_relation_list__isys_obj__id__slave = DD2.isys_obj__id
      LEFT JOIN isys_catg_accounting_list DD4 ON isys_catg_accounting_list__isys_obj__id = DD1.isys_obj__id
      WHERE DD1.isys_obj__isys_obj_type__id =5
      AND DD2.isys_obj__isys_obj_type__id = 35
      AND DD3.isys_obj__isys_obj_type__id = 2
      AND (DD3.isys_obj__title = 'Programmxyz' OR DD3.isys_obj__title = 'Programmxyz')
      Order by Server, Software 
      

      Hierbei habe ich jedes einzelne Programm ausgewählt und das ist ziemlich umständig. Jedoch zeigt er mir bei jedem Server die gleiche Software an auch wenn diese darauf nicht installiert ist. Gibt es hierfür eine andere Methode?

      Grüße + Danke

      Sven

      posted in Betrieb
      S
      svN_O
    • RE: Abfrage Editor

      Gibt es hierbei euch eine Möglichkeit nur die Server eines bestimmten Standortes anzuzeigen?

      Danke

      posted in Betrieb
      S
      svN_O
    • IDoit Ansicht

      Hallo,

      habe iDoit komplett installiert und funktioniert auch alles. Jetzt habe ich die Session Timout umgestellt, meinen Apache neu gestartet und schon sieht meine Seite so aus wie dem Bild. Habe auch versucht die alten Werte wieder einzusetzen aber leider ohne Erfolg. Woran könnte das den noch liegen?

      Danke für eure Hilfe!

      LG Sven

      posted in Entwicklung
      S
      svN_O