Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2014
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. ~$ createdb redmine -U redmine --encoding=UTF8
  2. createdb: database creation failed: ERROR: encoding UTF8 does not match locale en_US
  3. DETAIL: The chosen LC_CTYPE setting requires encoding LATIN1.
  4. ~$ export LANG=en_US.UTF-8
  5. ~$ locale
  6. LANG=en_US.UTF-8
  7. LANGUAGE=
  8. LC_CTYPE="en_US.UTF-8"
  9. LC_NUMERIC="en_US.UTF-8"
  10. LC_TIME="en_US.UTF-8"
  11. LC_COLLATE="en_US.UTF-8"
  12. LC_MONETARY="en_US.UTF-8"
  13. LC_MESSAGES="en_US.UTF-8"
  14. LC_PAPER="en_US.UTF-8"
  15. LC_NAME="en_US.UTF-8"
  16. LC_ADDRESS="en_US.UTF-8"
  17. LC_TELEPHONE="en_US.UTF-8"
  18. LC_MEASUREMENT="en_US.UTF-8"
  19. LC_IDENTIFICATION="en_US.UTF-8"
  20. LC_ALL=
  21. ~$ createdb redmine -U redmine --encoding=UTF8
  22. createdb: database creation failed: ERROR: encoding UTF8 does not match locale en_US
  23. DETAIL: The chosen LC_CTYPE setting requires encoding LATIN1.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement