NCache 4.4 - Online Documentation

Configuring Security

 
This feature is not available in NCache Express and Professional edition.
 
Every Server node keeps security information that it has to provide to calling clients. Alachisoft.NCache.NCSecurity.dll at server node is required to provide security services to all clients. Whatever information is required by this assembly, for managing security related issues, is present in security.ncconf file. security.ncconf file helps enabling NCache security as well as to manage Node and API level security. You will find security.ncconf file at "%Install Directory%/NCache/config".
 
Security.ncconf file is explained below:
 
<!-- Security Configuration file for NCache 4.4 and later versions -->
<cache-security>
<!-- Change the value true/false to enable or disable security
feature in NCache -->
<enabled>false</enabled>
<!-- LDAP path is required to log-on to domain. -->
<ldap>LDAP://Pdc-america</ldap>
<!-- Following users are Administrators and are allowed to add 'THIS' node
into their clusters and also allowed to perform Cache operations at
API level for all Caches. -->
<ncache-administrators>
<uid>Administrator</uid>
</ncache-administrators>
</cache-security>
 
  • <enabled> tells users if security is enabled or not (true/false)
  • <ldap> specifies ldap path for active directory server provider. It is the domain controller. NCache uses Microsoft Active Directory Service for authentication of user. User should exist under given domain in LDAP. For more information, see https://msdn.microsoft.com/en-us/library/aa746384.aspx
  • <ncache-administrators> keeps list of users having rights on all node-based and API-based operations.
 
 
See Also