Problem: ucs@school Install Wizard shows "Validation Error"

Problem:

The ucs@school Install Wizard shows “Validation Error”

Bildschirmfoto%20vom%202019-11-19%2012-22-06

Solution:

Check if the ucs@school slave has its Roles:

univention-ldapsearch -LLL cn=slave-sun |grep school
ucsschoolRole: dc_slave_edu:school:sun
objectClass: ucsschoolServer
univentionComputerPortal: cn=school-edu,cn=portal,cn=univention,dc=schein,dc=me
univentionService: UCS@school
univentionService: UCS@school Education

You can ignore the univentionService Attributes in this case. You need
objectClass: ucsschoolServer
and
ucsschoolRole: dc_slave_edu:school:sun

If these attributes are missing you can manually add them:

root@master:~# ldapmodify -x -D "cn=admin,$(ucr get ldap/base)" -y /etc/ldap.secret <<EOR
> dn: cn=slave-sun,cn=dc,cn=server,cn=computers,ou=sun,dc=schein,dc=me
> changetype: modify
> add: objectClass
> objectClass: ucsschoolServer
> -
> add: ucsschoolRole
> ucsschoolRole: dc_slave_edu:school:sun
> %EOR
Mastodon