my mongod instance is running on a server with Ubuntu 12.10 (x86_64).
From the mongo shell I'm am not able to perform commands like this:
db.listings.update({manName: "Schffer"}, {$set: {manName: "Schäffer"}})
The character 'ä' is not possible to be displayed in the mongo shell however in the terminal outside of the mongo shell such chars can be used with no difficulties. More precisely I can not even type the character in mongo shell.
From my Java application national characters can be passed to mongodb in the string values as well and are saved correctly.
I use putty to connect to the server and the Remote character set in Window -> Translation is set to UTF-8.
Do you have some advice how to make mongo shell accept these characters?
Thank you in advance!