Ozzie.eu

Love to code, although it bugs me.

Announcing the release of Service Pack 1 for Office 2013 and SharePoint 2013 - Office Updates - Site Home - TechNet Blogs

Announcing the release of Service Pack 1 for Office 2013 and SharePoint 2013 - Office Updates - Site Home - TechNet Blogs

Hadoop default configuration directory

To anyone reading this:



I inform that the conf directory that comes with Hadoop is no longer the default configuration directory.  Rather, Hadoop looks in “etc/hadoop" for configuration files. 

Hadoop default configuration directory

To anyone reading this:



I inform that the conf directory that comes with Hadoop is no longer the default configuration directory.  Rather, Hadoop looks in “etc/hadoop" for configuration files. 





Think I’ll bet on linux, next lab… These are the longest 54 seconds I ever waited!

Think I’ll bet on linux, next lab… These are the...



Think I’ll bet on linux, next lab… These are the longest 54 seconds I ever waited!

Troubleshooting pymssql installation on Ubuntu


Installing pymssql on Ubuntu 13.10 was not an easy task. Trying to install directly from the .egg file gave an UCS2-UCS4 incompatibility error. So I installed it from source.

After installing the FreeTDS packages, the process was as follows:

  1. Get source from https://github.com/pymssql/pymssql
  2. Error: _mssql.c:8:22: fatal error: pyconfig.h: No such file or directory
  3. Install Python development libraries: sudo apt-get install python-dev
  4. Error: _mssql.c:314:22: fatal error: sqlfront.h: No such file or directory
  5. Install freeTDS development libraries: sudo apt-get install freetds-dev
  6. Install pymssql from the unzipped source directory: sudo python setup.py install
Success!