odoobitnami

initdb.bin: invalid locale settings; check LANG and LC_* environment variables


When I tried to install bitnami odoo 9 in my ubuntu system via terminal, I got the following error message.

How to solve this issue?

initdb.bin: invalid locale settings; check LANG and LC_* environment variables

Solution

  • The issue solved when i used the following commands

    LC_ALL="en_US.UTF-8"
    LC_CTYPE="en_US.UTF-8"
    

    For Unix you have to be

    export LC_ALL="en_US.UTF-8"
    export LC_CTYPE="en_US.UTF-8"