Active directory SonarQube LDAP 2.0配置

Active directory SonarQube LDAP 2.0配置,active-directory,ldap,sonarqube,sonarqube-ops,Active Directory,Ldap,Sonarqube,Sonarqube Ops,我从SonarQube 5.6.2迁移到6.0。我使用Active Directory插件进行LDAP集成,配置如下: sonar.security.realm=ACTIVE_DIRECTORY sonar.authenticator.downcase=true sonar.security.realm=LDAP sonar.authenticator.downcase=true ldap.url=ldap://ldap.mydomain.com ldap.bindDn=myServiceAc

我从SonarQube 5.6.2迁移到6.0。我使用Active Directory插件进行LDAP集成,配置如下:

sonar.security.realm=ACTIVE_DIRECTORY
sonar.authenticator.downcase=true
sonar.security.realm=LDAP
sonar.authenticator.downcase=true
ldap.url=ldap://ldap.mydomain.com
ldap.bindDn=myServiceAccount@mydomain.com
ldap.bindPassword=myPwd

ldap.user.baseDn=dc=my,dc=domain,dc=com
ldap.user.request=(&(objectClass=user)(sAMAccountName={login}))

ldap.group.baseDn=ou=Groups,dc=my,dc=domain,dc=com
ldap.group.request=(&(objectClass=group)(member={dn}))
ldap.group.idAttribute=sAMAccountName
由于Active Directory插件与SonarQube 6.0不兼容,我被迫使用LDAP 2.0插件。 我提出了以下配置:

sonar.security.realm=ACTIVE_DIRECTORY
sonar.authenticator.downcase=true
sonar.security.realm=LDAP
sonar.authenticator.downcase=true
ldap.url=ldap://ldap.mydomain.com
ldap.bindDn=myServiceAccount@mydomain.com
ldap.bindPassword=myPwd

ldap.user.baseDn=dc=my,dc=domain,dc=com
ldap.user.request=(&(objectClass=user)(sAMAccountName={login}))

ldap.group.baseDn=ou=Groups,dc=my,dc=domain,dc=com
ldap.group.request=(&(objectClass=group)(member={dn}))
ldap.group.idAttribute=sAMAccountName
从本质上讲,它是有效的

现在我的问题是: 有没有办法设置LDAP 2.0插件来模拟用户-id@domain模式。如果没有,我如何将当前用户帐户迁移到基于新模式创建的新帐户(仅限sAMAccountName)