Hello,
we are trying to setup AD authentication but our OU has ~10000 users in it, how can we apply a filter to filter users in a specific group? We do this with other vendors and just dont see a place to do this on nagios.
Nagios XI AD authentication OU filter
Re: Nagios XI AD authentication OU filter
That functionality doesn't currently exist. You can either manually create the users and manually set their AD auth.. OR.. by default AD limits it to 1000 users, you can adjust it like this to display all the users:
Please open up an administrative command prompt and run these commands on the domain controller to see what the settings are, this is what resolved it on mine:
The part that we are interested in is the MaxPageSize settings, mine was set to 1000 so I ran this:
Then on your XI server, edit your /etc/php.ini, adjust the settings to what you set in the previous commands:
Then restart the HTTPD service:
Please open up an administrative command prompt and run these commands on the domain controller to see what the settings are, this is what resolved it on mine:
Code: Select all
ntdsutil.exe [enter]
ldap policies [enter]
connections [enter]
connect to server dc1.contoso.local [enter]
quit [enter]
show values [enter]The part that we are interested in is the MaxPageSize settings, mine was set to 1000 so I ran this:
Code: Select all
set maxpagesize to 5000 [enter]
commit changes [enter]
quit [enter]
quit [enter]Code: Select all
max_input_vars = 5000
suhosin.post.max_vars = 5000
suhosin.request.max_vars = 5000Code: Select all
service httpd restartRe: Nagios XI AD authentication OU filter
Ok thank you! unfortunately i cannot change the server settings but i will give the manual adding users piece a shot.
thanks for the help!
thanks for the help!
Re: Nagios XI AD authentication OU filter
Sounds good - let us know if you have any further questions.
Former Nagios Employee