From: Sarah Hoffmann Date: Tue, 30 Jul 2024 13:39:22 +0000 (+0200) Subject: Merge pull request #3490 from mtmail/which-url-after-webserver-install X-Git-Tag: deploy~4^2~5 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/804fb5f93e178c602aa0d9b60d7a8eec1d4c912b?hp=f52097c06424da90cc68a51b27884c4b900f26fb Merge pull request #3490 from mtmail/which-url-after-webserver-install After install point user to '/status' not '/' path --- diff --git a/docs/admin/Faq.md b/docs/admin/Faq.md index 7730c6c5..efcd5741 100644 --- a/docs/admin/Faq.md +++ b/docs/admin/Faq.md @@ -142,6 +142,25 @@ Make sure you have the PostgreSQL extensions "hstore" and "postgis" installed. See the installation instructions for a full list of required packages. +### UnicodeEncodeError: 'ascii' codec can't encode character + +Make sure that the operating system's locale is UTF-8. With some prebuilt +images (e.g. LXC containers from Proxmox, see +[discussion](https://github.com/osm-search/Nominatim/discussions/2343)) or +images that optimize for size it might be missing. + +On Ubuntu you can check the locale is installed: + +``` + grep UTF-8 /etc/default/locale +``` + +And install it using + +``` + dpkg-reconfigure locales +``` + ### I forgot to delete the flatnodes file before starting an import. That's fine. For each import the flatnodes file get overwritten.