LDAP Option in not available in other section

Hi,
I want to install xwiki in my ubuntu using docker-compose file. After up my file I could see UI and not able to see option LDAP. I have changed to " xwiki.authentication.authclass=org.xwiki.contrib.ldap.XWikiLDAPAuthServiceImpl " in xwiki.cfg Which is located at tomcat/webapps/WEB-INF/xwiki.cfg in my xwiki tomact container but its not worked for me.
this is my compose file

version: ‘2’
networks:
bridge:
driver: bridge
services:
web:
image: “xwiki:lts-mysql-tomcat”
container_name: xwiki-mysql-tomcat-web
depends_on:
- db
ports:
- “8080:8080”
environment:
- DB_USER=xwiki
- DB_PASSWORD=xwiki
- DB_HOST=xwiki-mysql-db
volumes:
- xwiki-data:/usr/local/xwiki
networks:
- bridge
db:
image: “mysql:5”
container_name: xwiki-mysql-db
volumes:
- /mnt/xwiki.cnf:/etc/mysql/conf.d/xwiki.cnf
- mysql-data:/var/lib/mysql
- /mnt/init.sql:/docker-entrypoint-initdb.d/init.sql
environment:
- MYSQL_ROOT_PASSWORD=xwiki
- MYSQL_USER=xwiki
- MYSQL_PASSWORD=xwiki
- MYSQL_DATABASE=xwiki
networks:
- bridge
volumes:
mysql-data: {}
xwiki-data: {}

=======================================
Could ypu please help me out

Did you install the https://extensions.xwiki.org/xwiki/bin/view/Extension/LDAP/Authenticator extension too?

Yes i installed extension “LDAP Authenticator
9.10.1” after restrating my containers it’s not reflecting .

Fine.

Well, that’s just the beginning of configuring the extension, but there’s no UI for it, you need to follow what’s on the extension page.

There’s no LDAP in you docker compose, I guess you have a separate server for it.

No @watery I’m using only one sever, I’m new to configure for Xwiki, could you please add LDAP in my docker-compose here, after give me step by step process.

The correct file extension here is cfg, you need to add your configuration in xwiki.cfg

Ok @acotiuga @watery but coniguration should be added in " xwiki-mysql-tomcat-web" cfg container path only ?
no need to add " xwiki-mysql-db" cfg container path i think .

my " xwiki-mysql-db" cfg xwiki.cnf configuration is
#cat xwiki.cnf

---------------------------------------------------------------------------

See the NOTICE file distributed with this work for additional

information regarding copyright ownership.

This is free software; you can redistribute it and/or modify it

under the terms of the GNU Lesser General Public License as

published by the Free Software Foundation; either version 2.1 of

the License, or (at your option) any later version.

This software is distributed in the hope that it will be useful,

but WITHOUT ANY WARRANTY; without even the implied warranty of

MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU

Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public

License along with this software; if not, write to the Free

Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA

02110-1301 USA, or see the FSF site: http://www.fsf.org.

---------------------------------------------------------------------------

[client]
default-character-set = utf8

[mysqld]
character-set-server = utf8
collation-server = utf8_bin
explicit_defaults_for_timestamp = 1

[mysql]
default-character-set = utf8

Could u pls suggest what i have to add in “xwiki-mysql-tomcat-web” and “xwiki-mysql-db” container configs (xwiki.cfg) and LDAP configuartion in compose file.

Nope, I’m not so keen on Docker compose, plus setting up a whole LDAP server is a different thing, I only added configuration to connect to an existing one.