Difference between revisions of "Talk:Manual postgres setup in linux"

From ADempiere
Jump to: navigation, search
This Wiki is read-only for reference purposes to avoid broken links.
m (A backslash is missing.)
 
(3 intermediate revisions by 2 users not shown)
Line 4: Line 4:
  
 
All pljava/sqlj stuff is included in dump.
 
All pljava/sqlj stuff is included in dump.
 +
[[User:Kontro|kontro]] 00:00, 4 January 2007 (EST)
 +
 +
== Small Differences to Fedora Core ==
 +
 +
kontro,<br>
 +
The page was of much help, specially the prebuilt PLJAVA for Pg8.2.<br>
 +
I am using Fedora Core and the procedure has a small difference:<br>
 +
> echo '$JAVA_HOME/jre/lib/i386' >> /etc/ld.so.conf
 +
> echo '$JAVA_HOME/jre/lib/i386/client' >> /etc/ld.so.conf
 +
> echo '$JAVA_HOME/jre/lib/i386/native_threads' >> /etc/ld.so.conf
 +
The above should change to:
 +
echo '$JAVA_HOME/jre/lib/i386' > /etc/ld.so.conf.d/postgresql.conf
 +
echo '$JAVA_HOME/jre/lib/i386/client' >> /etc/ld.so.conf.d/postgresql.conf
 +
echo '$JAVA_HOME/jre/lib/i386/native_threads' >> /etc/ld.so.conf.d/postgresql.conf
 +
Hope it helps the Fedora Core users. <br>
 +
Thank you, --[[User:Bmovaqar|Bahman]] 02:13, 10 February 2007 (EST)
 +
 +
== A backslash is missing. ==
 +
 +
I Think the line
 +
  echo "dynamic_library_path = '$libdir:/opt/pljava'" >> $POSTGRES_CONF
 +
should be
 +
  echo "dynamic_library_path = '\$libdir:/opt/pljava'" >> $POSTGRES_CONF.
 +
Just a single backslash.
 +
Warm regards, --[[User:Bmovaqar|Bahman]]

Latest revision as of 00:57, 29 April 2007

Hi, timo.
I saw install sqlj and pljava lines are wipe out, does 8.2 already included it ?
rgds Usman88 21:39, 3 January 2007 (EST)

All pljava/sqlj stuff is included in dump. kontro 00:00, 4 January 2007 (EST)

Small Differences to Fedora Core

kontro,
The page was of much help, specially the prebuilt PLJAVA for Pg8.2.
I am using Fedora Core and the procedure has a small difference:

> echo '$JAVA_HOME/jre/lib/i386' >> /etc/ld.so.conf
> echo '$JAVA_HOME/jre/lib/i386/client' >> /etc/ld.so.conf
> echo '$JAVA_HOME/jre/lib/i386/native_threads' >> /etc/ld.so.conf

The above should change to:

echo '$JAVA_HOME/jre/lib/i386' > /etc/ld.so.conf.d/postgresql.conf
echo '$JAVA_HOME/jre/lib/i386/client' >> /etc/ld.so.conf.d/postgresql.conf
echo '$JAVA_HOME/jre/lib/i386/native_threads' >> /etc/ld.so.conf.d/postgresql.conf

Hope it helps the Fedora Core users.
Thank you, --Bahman 02:13, 10 February 2007 (EST)

A backslash is missing.

I Think the line

 echo "dynamic_library_path = '$libdir:/opt/pljava'" >> $POSTGRES_CONF

should be

 echo "dynamic_library_path = '\$libdir:/opt/pljava'" >> $POSTGRES_CONF.

Just a single backslash. Warm regards, --Bahman