Talk:Debian and PostgreSQL Install

From ADempiere
Jump to: navigation, search
This Wiki is read-only for reference purposes to avoid broken links.

Deb package

Anyone have time to do this?

Sempre 22:25, 12 April 2008 (EDT)

notes regarding my ongoing installation

Just some notes regarding my ongoing installation,&nbsp
  • 1. I needed apt-get the following packages to compile postgresql-8.1-pljava-gcj
 # apt-get install postgresql-server-dev-8.1 build-essential NOTE compile went well
  • 2. pljava.vmoptions = '-Xmx64M -Dbackchannel.port=48' NOTE added this to postgresql.conf same as in windows install
  • 3. JAVA_HOME='/usr/lib/jvm/java-1.5.0-sun' NOTE needs quotes?
  • 4. restarting postgres did not fail. NOTE It failed when pljava.vmoptions = is blank
  • 5. Now we install pljava support in the main cluster with the following:NOTE missing "
  • 6. /etc/postgresql/8.1/main/pg_hba.conf NOTE location of pg_hba.conf
  • 7 run /home/adempiere/Adempiere/RUN_setup.sh NOTE cd /home/adempiere/Adempiere for java to find RUN_setup.sh
  • 8 had to make RUN_setup.sh executable before running ie chmod 755 RUN_setup.sh
  • 9 to overcome the JDBC error add the ip of the server to pg_hba.conf
# IPv6 local connections:
host    all         all         ::1/128               trust
host    all         all         {Set your IP}/32      trust

Ddave01