English 中文(简体)
active directory monitoring
原标题:

I want to develop a monitoring tool to monitor active directory like (solar wind,op manager etc). For this purpose,I have chosen Zabbix(an open source tool) to monitor AD and provide me real time values so that i can plot those results on my Front-end. To monitor any process/service by zabbix, i need to provide its complete path to zabbix. i have monitored some services like lsass.exe,ntfrs.exe and get their successful results. but i am facing a problem in monitoring ntds.dit. can any one tell me how to monitor ntds.dit?as this is in binary format so unreadable.

Secondly,Windows Performance Monitor provides all the parameters that i need for monitoring.but i dont know how to read that values from WPM.

can any one help me in getting values from WPM or is there any service that can give me ntds info(ldap,ab client session etc..) so that i can plot it on my front end.

问题回答

Ntds.dit is an Extensible Storage Engine database. It contains all the Active Directory LDAP objects. It is opened exclusively by LSASS while the system is running with ADS enabled. The only time it wouldn t be locked is when the system is in ADS recovery mode or when the file is in something like a VSS snapshot.

All the relevant data in the ntds database can be accessed through LDAP; you shouldn t need to touch the database file directly.





相关问题
Manually implementing high performance algorithms in .NET

As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...

Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How do I compare two decimals to 10 decimal places?

I m using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them all to be equal. 0....

Exception practices when creating a SynchronizationContext?

I m creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I m wondering what to do about exceptions when Post-ing callbacks. The SynchronizationContext can be used ...

Show running instance in single instance application

I am building an application with C#. I managed to turn this into a single instance application by checking if the same process is already running. Process[] pname = Process.GetProcessesByName("...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...

热门标签