In my case there is Active Directory integration and the LDAP “connection string” to the AD contains an OU (“Organisational Unit”) with an Umlaut.
I’ve now renamed the OU in our Active Directory to not contain an Umlaut anymore.
This Umlaut OU worked flawlessly with GitLab since several years; V 16 broke it.
gbarre
May 24, 2023, 9:25am
22
@iwalker : for our configuration, it was here :
gitlab_rails['ldap_servers'] = YAML.load <<-'EOS' # remember to close this block with 'EOS' below
# [...]
label: 'LDAP académique'
# [...]
1 Like
we have an “é” in login button label. guess we could replace it with é I’ll try that tonight
1 Like
oups doesn’t show in html… replace with “and eacute ;”
Could be good to report it as an issue with Gitlab - especially since it used to work fine in previous versions. Could just be a minor regression that needs to be fixed to add that support back in.
2 Likes
Marp
May 24, 2023, 9:41am
26
for us it was a “§” character in an automatically generated password for ldap binding.
1 Like
rzo1
May 24, 2023, 10:02am
27
For us it was a “ü” and a “ö” in a label for open-id-connect. This maxed out 16 vCPUs and 32GB of RAM resulting in a non-availability of a Gitlab EE system at our university.
Worked flawlessly with Gitlab v15 - please fix.
OK, I’ve created an issue:
Hopefully I did not make too many mistakes when creating the issue. Feedback welcome.
4 Likes
Evg3ny
May 24, 2023, 10:27am
29
Disable ldap and all is well
1 Like
shenol
May 24, 2023, 1:04pm
30
It’s been over 24 hours but the cpu is still 100%. I also did the security update. There is no change. The application is getting errors in the interface. For example; on board, when issues are opened
1 Like
Marp
May 24, 2023, 2:10pm
32
Check your config file with the following command:
grep --color='auto' -P -n "[\x80-\xFF]" /etc/gitlab/gitlab.rb
remove/replace all found characters
1 Like
stanhu
May 24, 2023, 10:07pm
33
Here’s a workaround. Set this in /etc/gitlab/gitlab.rb
and run gitlab-ctl reconfigure
:
gitlab_rails['env'] = {
'LANG' => 'C.UTF-8'
}
A fix is in Fix Sidekiq crash when gitlab.yml contains UTF-8 characters (!121782) · Merge requests · GitLab.org / GitLab · GitLab .
7 Likes
tossp
May 25, 2023, 3:17pm
35
Your solution worked!! Thanks a lot!
1 Like
Hey,
Here is a nifty tool to check the upgrade path: Upgrade Path
As far as I saw, you have to first update to 15.11.6, the you can go to V16.
Lysdt
June 2, 2023, 10:43am
37
This also worked for me. It brought our VM to an extremely unresponsive standstill for 24 hours.
Until the fix is in place I suggest putting this fix somewhere in the release notes, as I only came across this by chance from a Reddit search.