Simple script to install on Centos/Fedora/Redhat
From NEOSYS Dev Wiki
#=== Building and Installing Exodus on Centos 5.6 x86 and x64 ===
#simply cut and paste everything down to "section 5. testsort" into a bash prompt or script
#it takes roughly 15 minutes to finish
#need to be root to run all this
#TODO convert to run with minimal permissions/sudo
#tested on:
#CentOS release 5.6 (Final)
#Linux localhost.localdomain 2.6.18-238.9.1.el5 #1 SMP Tue Apr 12 18:10:56 EDT 2011 i686 i686 i386 GNU/Linux
#CentOS release 5.6 (Final)
#Linux localhost.localdomain 2.6.18-238.9.1.el5 #1 SMP Tue Apr 12 18:10:13 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux
uname -a
cat /etc/issue
#==== 1. Building and Installing Boost ====
yum -y install icu libicu libicu-devel
#IT IS CRITICAL THAT BOOST-DEVEL IS *NOT* INSTALLED
yum -y remove boost-devel
yum -y install gcc-c++
cd ~
rm -f boost_1_46_1.tar.gz
wget http://sourceforge.net/projects/boost/files/boost/1.46.1/boost_1_46_1.tar.gz/download
tar xfz boost_1_46_1.tar.gz
cd boost_1_46_1
#bjam should say "has_icu builds: yes" otherwise check your icu installation above
./bootstrap.sh
./bjam --with-date_time --with-filesystem --with-regex --with-system --with-thread install
#==== 2. Building and Installing Exodus ====
yum -y install subversion gcc-c++ postgresql-devel
cd ~
svn co HTTPS://exodusdb.googlecode.com/svn/trunk/ exodus
cd ~/exodus
./configure
make && make install
#==== 3. Configuring Postgresql ====
yum -y install postgresql-server
/etc/init.d/postgresql start
su - postgres
##allow local tcp/ip login
#change "ident sameuser" to "md5" for all/all/127.0.0.1/32
#host all all 127.0.0.1/32 ident sameuser
#host all all 127.0.0.1/32 md5
cp ~/data/pg_hba.conf ~/data/pg_hba.conf.preexodus
egrep -v "^\w*host.*all.*127.0.0.1/.*ident" ~/data/pg_hba.conf.preexodus > ~/data/pg_hba.conf
echo host all all 127.0.0.1/32 md5 >> ~/data/pg_hba.conf
psql -U postgres -d template1
\connect template1
CREATE OR REPLACE FUNCTION exodus_call(bytea, bytea, bytea, bytea, bytea, int4, int4) RETURNS bytea AS 'pgexodus', 'exodus_call' LANGUAGE C IMMUTABLE;
CREATE OR REPLACE FUNCTION exodus_extract_bytea(bytea, int4, int4, int4) RETURNS bytea AS 'pgexodus', 'exodus_extract_bytea' LANGUAGE C IMMUTABLE;
CREATE OR REPLACE FUNCTION exodus_extract_text(bytea, int4, int4, int4) RETURNS text AS 'pgexodus', 'exodus_extract_text' LANGUAGE C IMMUTABLE;
CREATE OR REPLACE FUNCTION exodus_extract_sort(bytea, int4, int4, int4) RETURNS text AS 'pgexodus', 'exodus_extract_sort' LANGUAGE C IMMUTABLE;
-- Remaining functions are STRICT therefore never get called with NULLS -- also return NULL if passed zero length strings
CREATE OR REPLACE FUNCTION exodus_extract_text2(bytea, int4, int4, int4) RETURNS text AS 'pgexodus', 'exodus_extract_text2' LANGUAGE C IMMUTABLE STRICT;
CREATE OR REPLACE FUNCTION exodus_extract_date(bytea, int4, int4, int4) RETURNS date AS 'pgexodus', 'exodus_extract_date' LANGUAGE C IMMUTABLE STRICT;
CREATE OR REPLACE FUNCTION exodus_extract_time(bytea, int4, int4, int4) RETURNS time AS 'pgexodus', 'exodus_extract_time' LANGUAGE C IMMUTABLE STRICT;
CREATE OR REPLACE FUNCTION exodus_extract_datetime(bytea, int4, int4, int4) RETURNS timestamp AS 'pgexodus', 'exodus_extract_datetime' LANGUAGE C IMMUTABLE STRICT;
CREATE ROLE exodus LOGIN
PASSWORD 'somesillysecret'
CREATEDB CREATEROLE;
CREATE DATABASE exodus
WITH ENCODING='UTF8'
OWNER=exodus;
\df exodus*
\q
exit
/etc/init.d/postgresql reload
#==== 4. Configuring Exodus ====
echo host=127.0.0.1 \
port=5432 \
dbname=exodus \
user=exodus \
password=somesillysecret \
> ~/.exodus
#==== 5. Testing Exodus ====
cd ~
testsort
==== 6. Programming with Exodus ====
#you must make some change to hello or actually save it, not just quit
edic hello
hello
compile hello