Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Web Server Setup for Linux

Table of Contents

Introduction

------------We are unsing centos.

  1. uname -a
    Linux sfmaps_web 2.6.18.8-xenU #1 SMP Mon Aug 18 14:00:41 PDT 2008 x86_64 x86_64 x86_64 GNU/Linux

...

It is important that at every step you specify the right versions.
Since you may have 2 version of python, its very easy to get a python component wrong.
Not that this ever happened to me.
For example, when installing mod_wsgi, if you do not explicitly specify the
right version, the default version will be used. This may cause problems
that are difficult to trouble shoot.

 

System Administration Essentials

...

You will need a moderate amount of unix foo (fu) to do this.
If you are a real unix sys-admin, skip this section.

...

In real life, there are usually variations to the above pattern,
sometimes significant variations.

Preliminaries

-------------
Install development packages for apache httpd

  1. sudo yum install apr-devel.x86_64
  2. sudo yum install httpd-dev.x86_64
  3. sudo yum install glibc-common
  4. sudo yum install zlib-devel.x86_64
PYTHON2.5

--------- http://www.python.org/ftp/python/2.5.4/Python-2.5.4.tgz

Compile and install 2.5.4 along side what ever python version is already installed.
Using "altinstall" allows mutliple versions to be installed.
When using "altinstall" note that you must type "python2.5" and not "python" to get
the right version. Enable 4 byte unicode so it plays nice with psycopg2.

...

Links http://effbot.org/pyfaq/when-importing-module-x-why-do-i-get-undefined-symbol-pyunicodeucs2.htm http://www.fishandcross.com/blog/?p=610

MOD_

...

WSGI 

http://modwsgi.googlecode.com/files/mod_wsgi-2.5.tar.gz

...

Links http://code.google.com/p/modwsgi/

PSYCOPG2

-------- http://initd.org/psycopg/tarballs/PSYCOPG-2-0/psycopg2-2.0.12.tar.gz

...

  1. sudo python2.5 setup.py install
    Take great care here to use the right version of python.
    Note that this was ever an issue for me.

links http://initd.org/

GEOS

http://download.osgeo.org/geos/geos-3.1.1.tar.bz2

...

links http://geodjango.org/docs/install.html

PROJ.4

...

A bit unusual; follow these instructions:
http://geodjango.org/docs/install.html#proj4

links http://geodjango.org/docs/install.html

 

GDAL

http://download.osgeo.org/gdal/gdal-1.6.2.tar.gz

...

  1. ./configure
  2. make
  3. sudo make install
    links http://geodjango.org/docs/install.html
DJANGO

...

Since this is pure python, you can copy this into the python site-packages.
Or install as you see fit.

  1. sudo python2.5 setup.py install

JOGGING
------- 

JOGGING

Download Jogging v0.2.2 http://github.com/zain/jogging/zipball/v0.2.2
or
Http://github.com/zain/jogging/tarball/v0.2.2
in Windows: unzip file, copy the content folder called "jogging" to C:\Python25\Lib\site-packages or /usr/local/lib/python2.5/site-packages
in Linux: get gz file, unzip, untar, then run from jogging directory: $ python2.5 setup.py install

For the Change Notification process, the xmit_daemon.py script uses a system variable called MAD_HOME.
MAD_HOME is set by xmit_change_notifications.bsh; it must point to the path where the web application is deployed.
MAD_HOME is used to access the django settings.py.
This daemon process runs outside of the web server.

ADMIN

You want to make sure the web server starts on reboot.
To accomplish this:

...