I ran into this same issue and all the answers I found didn't do a great job of explaining how to fix this. I'm running Ubuntu 18.04 in a container so your mileage may vary but this issue was caused by the locale of my system not being set. All the information on setting up the local was pulled from this site:
https://www.thomas-krenn.com/en/wiki/Configure_Locales_in_Ubuntu. Note: I used the UTF8 locale, I'm not 100% sure that's necessary but I don't see why it would hurt.
Step 1: Check if the locale you want is installedRun the
locale -a command to see if the locale you want is installed.
Example:
- Code: Select all
$ locale -a
C
C.UTF-8
en_US.utf8
If your locale is listed, skip to step 3.
Step 2: Install your localeRun the
locale-gen command to install the missing locale
Example:
- Code: Select all
$ locale-gen en_US.UTF8
Generating locales...
en_US.UTF8... done
Generation complete.
Step 3: Set your localeUse the
update-locale command to change the
LC_ALL option to your locale
Example:
- Code: Select all
$ update-locale LC_ALL=en_US.UTF-8
Step 4: RebootPretty self explanatory
Step 5: Delete your old database and rebuildThis is outlined here:
https://wiki.cementhorizon.com/articles/Tech/How%20to%20clean%20up%20a%20corrupted%20Subsonic%20database.htmlThe TLDR; is to stop the service, remove all files in
/var/subsonic/db/ except
subsonic.script, restart the service, then rescan your media files. From my experience this step has to be done as your database will contain the incorrect strings until you rebuild it. Rescanning your media library without deleting the database doesn't have any effect.
Step 6: ProfitNoteYou can check your current locale with the
locale command.
Example:
- Code: Select all
$ locale
LANG=C
...
If the result of this command is similar to the above, with the values showing as "C" no locale has been set and you'll need to follow the steps above.