2013

Common Error in CentOS: Failed to set locale, defaulting to C

Failed to set locale, defaulting to C You can see this often in CentOS because you never set the locale for your Linux. You can try this [code lang=”bash”] echo "export LC_ALL=en_US.UTF-8" >> /etc/profile export LC_ALL=en_US.UTF-8 export LANG=en_US.UTF-8 export LANGUAGE=en_US.UTF-8 export LC_COLLATE=C export LC_CTYPE=en_US.UTF-8 [/code] Then disconnect and reconnect to your bash.

Common Error in CentOS: Failed to set locale, defaulting to C Read More »

MongoDB Error: exception in initAndListen std::exception: boost::filesystem::exists: Permission denied: “/sys/devices/system/node/node1”

I found this error while installed yum install mongo-10gen-2.2.3 mongo-10gen-server-2.2.3 in CentOS 6.4 64bit Wed Oct 16 16:19:08 [initandlisten] MongoDB starting : pid=22457 port=27017 dbpath=/var/lib/mongo 64-bit host=xxxxxxx.net Wed Oct 16 16:19:08 [initandlisten] exception in initAndListen std::exception: boost::filesystem::exists: Permission denied: “/sys/devices/system/node/node1”, terminating Wed Oct 16 16:19:08 dbexit: Wed Oct 16 16:19:08 [initandlisten] shutdown: going to close

MongoDB Error: exception in initAndListen std::exception: boost::filesystem::exists: Permission denied: “/sys/devices/system/node/node1” Read More »