
h1. Running Multiple instances of 4store (httpd) on a single machine - Ubuntu 10.04
.....
h2. Dependencies
Install the debian provided dependencies
{code}
apt-get install build-essential libpcre3-dev librasqal2-dev libtool libraptor1-dev libglib2.0-dev ncurses-dev libreadline-dev uuid-dev git-core automake
{code}
Next install (download, ./configure, make, make install):
RAPTOR \-> [http://librdf.org/raptor/|http://librdf.org/raptor/]
RASQAL \-> [http://librdf.org/rasqal/|http://librdf.org/rasqal/]
h2. Download 4store from Git
{code}
git clone https://github.com/garlik/4store.git
{code}
h2. {color:#222222}Install 4store{color}
{code}
cd 4store
./autogen.sh
./configure
make
sudo make install
sudo ldconfig
{code}
h2. {color:#222222}Configure 4store{color}
{code}
sudo vi /etc/4store.conf
{code}
Content:
{code}
[4s-boss]
discovery = sole
nodes = localhost
{code}
Next edit hosts file to disable IPv6 lookup for localhost
{code}
vi /etc/hosts
{code}