LDAP integration lets system administrators link an existing Active Directory database to the VMS (Video Management System) Media Server for access and rights management.
Use this guide to resolve common LDAP connection issues and find answers to frequently asked questions.
Test an LDAP connection
To determine whether a connection issue comes from the VMS or your LDAP environment, test basic LDAP queries outside the VMS software using a third-party LDAP tool.
Prerequisites
Ensure the LDAP server is accessible from the Media Server over LAN, WAN, or VPN.
Ensure you have valid LDAP credentials. Any domain user account can query the LDAP server; special permissions or Domain Admin rights are not required.
Step 1: Run a test query
Run an LDAP query from the Media Server using a third-party browser or command-line utility.
Windows: Softerra LDAP Browser.
Ubuntu: OpenLDAP or install the
ldap-utilspackage and useldapsearch.
To run a test query on Ubuntu:
Open your terminal.
-
Install the LDAP utilities:
sudo apt-get update && sudo apt-get install ldap-utils -
Run an
ldapsearchquery using your domain details:ldapsearch -LLL -x -H ldap://ad.my.domain.com:389 -s sub -D Administrator@my.domain.com -b CN=Users,DC=my,DC=domain,DC=com -w PaSsWoRd123 -o ldif-wrap=150Replace the sample parameters with your network settings:
URL:
ldap://ad.my.domain.comPort:
389Admin DN:
Administrator@my.domain.com(orCN=Administrator,CN=Users,DC=my,DC=domain,DC=com)Search Base:
CN=Users,DC=my,DC=domain,DC=comPassword:
PaSsWoRd123
Example response
A successful response returns user and container details similar to this output:
dn: CN=Users,DC=my,DC=domain,DC=com
objectClass: top
objectClass: container
cn: Users
description: Default container for upgraded user accounts
distinguishedName: CN=Users,DC=my,DC=domain,DC=com
instanceType: 4
whenCreated: 20151113032937.0Z
whenChanged: 20151113032937.0Z
uSNCreated: 5696
uSNChanged: 5696
showInAdvancedViewOnly: FALSE
name: Users
objectGUID:: puf/DK2dGkCF/7bTR7V+iw==
systemFlags: -1946157056
objectCategory: CN=Container,CN=Schema,CN=Configuration,DC=my,DC=domain,DC=com
isCriticalSystemObject: TRUE
dSCorePropagationData: 20170619233637.0Z
dSCorePropagationData: 16010101000001.0ZIf the test query succeeds: Proceed to Step 2: Collect server logs.
If the test query fails: Contact your LDAP system administrator. The issue is likely related to general network connectivity or LDAP server configuration rather than the VMS.
Step 2: Collect server logs
If third-party testing succeeds but the VMS still experiences issues:
In the VMS, change the main server log level to DEBUG2 (VERBOSE).
Replicate the failed LDAP operation.
Collect the Media Server logs and send them to your local reseller or support team for review.
Need help with setup or general configuration?
Read the LDAP Integration FAQs for answers about default ports, synchronization schedules, and account permissions.
See Configuring LDAP Search Bases for Specific Groups and Users to learn how to refine directory queries and filter specific user groups.
Comments
0 comments
Article is closed for comments.