Last active
May 6, 2019 02:29
-
-
Save DamionDamion/fe5083991b4e65a352262e2768b84de7 to your computer and use it in GitHub Desktop.
Confluence database encoding & collation setup (Postgresql)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# As of Confluence 6.15 please use char encoding UTF-8 | |
# WARN: Collations, such as "C", are known to cause issues with Confluence. | |
# https://confluence.atlassian.com/doc/database-setup-for-postgresql-173244522.html | |
# Ommitting collation settings will cause the system to default to current locale. | |
# If you force " LC_COLLATE = 'en_US.UTF-8' " and the system local is not en_US, errors will occure. | |
create database confluence with owner confluence ENCODING 'utf-8'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment