= Python module setup
=====================
-sudo deploy.sh
-OR
ln -s /home/nirgal/kod/ais/bin /usr/lib/python2.6/ais
OR
+sudo deploy.sh
+OR
ln -s /home/nirgal/kod/ais/bin /usr/share/pyshared/ais
find /usr/share/pyshared/ais/ -name *.py > /usr/share/python-support/ais.public
update-python-modules /usr/share/python-support/ais.public
-= Real time acquisition
-=======================
-umask 002
-python -m ais.inputs.run --db --background
+= Kernel tuning
+===============
-= Job queue runner
-==================
-umask 002
-python -m ais.jobrunner --daemon
+I suggest you add these lines to your /etc/sysctl.conf file:
+
+# for postgres: a process may use up to 768MB of RAM
+kernel.shmmax=805306368
+# Udp recv queue max size. Note this is not the max size a default socket will
+get. 256*1024-1 => doubled by kernel = 512KB
+net.core.rmem_max=262143
= Apache setup
==============
a2enmod ssl headers rewrite
-= Kernel tuning
-===============
-
-I suggest you add these lines to your /etc/sysctl.conf file:
+= Real time acquisition
+=======================
+umask 002
+python -m ais.inputs.run --db --background
-# for postgres: a process may use up to 768MB of RAM
-kernel.shmmax=805306368
-# Udp recv queue max size. Note this is not the max size a default socket will
-get. 256*1024-1 => doubled by kernel = 512KB
-net.core.rmem_max=262143
+= Job queue runner
+==================
+umask 002
+python -m ais.jobrunner --daemon