Andrea Chiodoni wrote:
Hello
can anybody tell me how to enable kerberos with directory 0.9.2.
I've been trying to start with -Dserver.enable.kerberos=true but it
seams doing any difference: I expect the server to listen on 88, right?
Hi, Andrea,
With 0.9.2 configuration is by the server.xml file. You need to add
'enableKerberos' to the "MutableServerStartupConfiguration":
$ java -jar apacheds-main-0.9.2.jar /path/to/server.xml
server.xml:
<bean id="configuration"
class="org.apache.ldap.server.configuration.MutableServerStartupConfiguration">
<property name="workingDirectory"><value>apache.org</value></property>
<property name="allowAnonymousAccess"><value>false</value></property>
<property name="ldapPort"><value>10389</value></property>
...
<property name="enableKerberos"><value>true</value></property>
...
Any other properties for Kerberos options go in the "PropertiesFactoryBean".
Enrique