Month: June 2012

  • locale.Error: unsupported locale (Solved)

    by

    in

    # iotop Traceback (most recent call last): File “/usr/bin/iotop”, line 16, in main() File “/usr/lib/pymodules/python2.6/iotop/ui.py”, line 506, in main locale.setlocale(locale.LC_ALL, ”) File “/usr/lib/python2.6/locale.py”, line 513, in setlocale return _setlocale(category, locale) locale.Error: unsupported locale setting Solution: # export LCC_ALL=C for making it permanent, You have to add it to .bashrc reference: http://www.quantumwise.com/support/faq/103-localeerror-unsupported-locale-setting?catid=24%3Aerror-messages

  • apache [warn] module ssl_module is already loaded, skipping (Solved)

    by

    in

    # httpd -t [Fri Jun 08 11:12:19 2012] [warn] module ssl_module is already loaded, skipping Syntax OK This happens, because ssl module is enabled in more than 1 place: # grep ssl_module -rI /etc/httpd/* conf/httpd.conf:LoadModule ssl_module /usr/lib64/httpd/modules/mod_ssl.so conf.d/ssl.conf:LoadModule ssl_module modules/mod_ssl.so we load all needed modules in one place – /etc/httpd/conf/httpd.conf. So we can safely comment…

  • After upgrade: PHP Warning: PHP Startup: Unable to load dynamic library (Solved)

    by

    in

    After upgrade to php53 # php -v PHP Warning: PHP Startup: Unable to load dynamic library ‘/usr/lib64/php/modules/dbase.so’ – /usr/lib64/php/modules/dbase.so: cannot open shared object file: No such file or directory in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library ‘/usr/lib64/php/modules/ncurses.so’ – /usr/lib64/php/modules/ncurses.so: undefined symbol: first_arg_force_ref in Unknown on line 0 PHP…