Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Note: I am doing python install, to keep things simple and to avoid security problems at slac. The other option is perl, but since all the code developed by Dan Gunter will be in python, it will be easier to integrate.

Note netlogger require requires python version of 2.4 and greater.

You can check your python version by using -V option:

Code Block
$ python \-V

Pre-requisite packages

You might require python's setup tools if not installed already. They can be obtained from python setuptools.

As a dependency package "mysql-devel" may be required, if not installed already. The easiest way to do this is "yum install mysql-devel".

MySQLdb Interface to Python

...

From source forge I got the direct link to Mysql.

Code Block
$ /usr/bin/wget [http://downloads.sourceforge.net/project/mysql-python/mysql-python-test/1.2.3c1/MySQL-python-1.2.3c1.tar.gz?use_mirror=hivelocity]

$ gunzip MySQL-python-1.2.3c1.tar.gz

$ tar \-xvf MySQL-python-1.2.3c1.tar

$ cd MySQL-python-1.2.3c1

$ python setup.py build

$ python setup.py install

...

Code Block
$ sudo yum install postgressqlpostgresql-python

Installing NetLogger from Source

...