Lists: | PostgreSQL : PostgreSQL 메일 링리스트 : 2008-07-30 이후 롤 토토 14:35 |
---|
From: | terencenwk at hotmail(dot)com (Terence Ng) |
---|---|
To: | |
Subject: | [Pljava-dev] How to compile pljava in Solaris 10 5/08? |
Date: | 2008-06-08 03:10:51 |
Message-ID: | BAY105-W23238BB4C42DEE2B01B3DBD3B10@phx.gbl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pljava-dev |
Hi, I have difficulty in compiling pljava 1.4.0 in Solaris 10 5/08. I am using Postgresql 8.2, JDK1.5.0, GCC and Binutils packages in Solaris.There is an error during compiling: # gmake gmake[1]: Entering directory `/var/tmp/pljava/pljava-1.4.0/build/classes/pljava' gmake[1]: Nothing to be done for `all'. gmake[1]: Leaving directory `/var/tmp/pljava/pljava-1.4.0/build/classes/pljava' gmake[1]: Entering directory `/var/tmp/pljava/pljava-1.4.0/build/classes/deploy' gmake[1]: Nothing to be done for `all'. gmake[1]: Leaving directory `/var/tmp/pljava/pljava-1.4.0/build/classes/deploy' gmake[1]: Entering directory `/var/tmp/pljava/pljava-1.4.0/build/objs' /ws/on10-tools/SUNWspro/SS11/bin/cc -Xa -c -O -xarch=386 -xchip=pentium -xspace -Xa -xildoff -xc99=none -xCC -KPIC -I. -I/usr/postgres/8.2/include/server -I/ usr/postgres/8.2/include/internal -I/sfw10/builds/build/sfw10-patch/proto/root_i 386/usr/include -I/sfw10/builds/build/sfw10-patch/proto/root_i386/usr/sfw/includ e -I/usr/sfw/include -I/sfw10/builds/build/sfw10-patch/usr/src/cmd/postgres/post gresql-8.2/krb5/include -DPKGLIBDIR=\"/usr/postgres/8.2/lib\" -I/var/tmp/pljava/ pljava-1.4.0/src/C/include -I/var/tmp/pljava/pljava-1.4.0/build/jni -DPGSQL_MAJO R_VER=8 -DPGSQL_MINOR_VER=2 -DPGSQL_PATCH_VER=6 -I"/usr/java/include" -I"/usr/ja va/include/solaris" /var/tmp/pljava/pljava-1.4.0/src/C/pljava/type/BigDecimal.c -o type/BigDecimal.o /bin/sh: /ws/on10-tools/SUNWspro/SS11/bin/cc: not found gmake[1]: *** [type/BigDecimal.o] Error 1 gmake[1]: Leaving directory `/var/tmp/pljava/pljava-1.4.0/build/objs' gmake: *** [c_all] Error 2 # How do I solve it? Could someone guilde me the steps? Regards, Terence
_________________________________________________________________
Connect to the next generation of MSN Messenger?
http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-us&source=wlmailtagline
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20080608/e1312de0/attachment.html>
From: | jurka at ejurka(dot)com (Kris Jurka) |
---|---|
To: | |
Subject: | [Pljava-dev] How to compile pljava in Solaris 10 5/08? |
Date: | 2008-06-08 04:21:11 |
Message-ID: | 484B5E37.1080008@ejurka.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pljava-dev |
Terence Ng wrote:
>
> I have difficulty in compiling pljava 1.4.0 in Solaris 10 5/08.
> I am using Postgresql 8.2, JDK1.5..0, GCC and Binutils packages in Solaris.
>
> There is an error during compiling:
>
> /bin/sh: /ws/on10-tools/SUNWspro/SS11/bin/cc: not found
Pljava is trying to use the same compiler and options to build pljava as
the postgresql server was compiled with. Apparently your postgresql
package was built with Solaris' compiler, so it's trying to use that
instead of gcc which you have installed.
You can override this by setting the CUSTOM_CC environment variable to
point to gcc, but you'll still have the old CFLAGS and other things
which are not so easy to override. The easiest thing would be to
install the sun compiler, next easiest would be to build your own
postgresql version with gcc, and finally you could adjust assorted parts
of the pljava build system to build with gcc instead of sun's compiler.
Kris Jurka
From: | terencenwk at hotmail(dot)com (Terence Ng) |
---|---|
To: | |
Subject: | [Pljava-dev] How to compile pljava in Solaris 10 5/08? |
Date: | 2008-06-08 14:50:34 |
Message-ID: | BAY105-W4452394177E8FC5204EACAD3B10@phx.gbl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pljava-dev |
Hi Kris,
I have installed Solaris Studio 12 the C compiler and build tool. After running:
# cd /var/tmp/pljava/pljava-1.4.0
# /opt/SUNWspro/bin/dmakedmake: Warning: Can't find `make.rules': No such file or directorydmake: Fatal error in reader: Makefile, line 30: Unexpected end of line seen
What should I do? Should I also install the C++ compiler?
Regards,
Terence
> Date: Sat, 7 Jun 2008 22:21:11 -0600> From: jurka at ejurka.com> To: terencenwk at hotmail.com> CC: pljava-dev at pgfoundry.org> Subject: Re: [Pljava-dev] How to compile pljava in Solaris 10 5/08?> > Terence Ng wrote:> > > > I have difficulty in compiling pljava 1.4.0 in Solaris 10 5/08.> > I am using Postgresql 8.2, JDK1.5..0, GCC and Binutils packages in Solaris.> > > > There is an error during compiling: > > > > /bin/sh: /ws/on10-tools/SUNWspro/SS11/bin/cc: not found > > Pljava is trying to use the same compiler and options to build pljava as > the postgresql server was compiled with. Apparently your postgresql > package was built with Solaris' compiler, so it's trying to use that > instead of gcc which you have installed.> > You can override this by setting the CUSTOM_CC environment variable to > point to gcc, but you'll still have the old CFLAGS and other things > which are not so easy to override. The easiest thing would be to > install the sun compiler, next easiest would be
to build your own > postgresql version with gcc, and finally you could adjust assorted parts > of the pljava build system to build with gcc instead of sun's compiler.> > Kris Jurka
_________________________________________________________________
Discover the new Windows Vista
http://search.msn.com/results.aspx?q=windows+vista&mkt=en-US&form=QBRE
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20080608/d90ff0ed/attachment.html>
From: | books at ejurka(dot)com (Kris Jurka) |
---|---|
To: | |
Subject: | [Pljava-dev] How to compile pljava in Solaris 10 5/08? |
Date: | 2008-06-08 18:02:38 |
Message-ID: | 484C1EBE.40807@ejurka.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pljava-dev |
Terence Ng wrote:
>
> I have installed Solaris Studio 12 the C compiler and build tool. After
> running:
> # cd /var/tmp/pljava/pljava-1.4.0
> # /opt/SUNWspro/bin/dmake
> dmake: Warning: Can't find `make.rules': No such file or directory
> dmake: Fatal error in reader: Makefile, line 30: Unexpected end of line seen
>
You still need to use GNU make to build pljava, not dmake. Also since
you've installed sun studio 12 (and into a different location) instead
of the used sun studio 11, you'll need to either set CUSTOM_CC to point
to your cc binary, or make some symlinks.
Kris Jurka
From: | terencenwk at hotmail(dot)com (Terence Ng) |
---|---|
To: | |
Subject: | [Pljava-dev] How to compile pljava in Solaris 10 5/08? |
Date: | 2008-06-10 15:58:07 |
Message-ID: | BAY105-W7A4D9B321D7654A0876C6D3B30@phx.gbl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pljava-dev |
Hi,
I still cannot compile pljava, the output is:
# echo $CUSTOM_CC/opt/SUNWspro/bin/cc# gmakegmake[1]: Entering directory `/var/tmp/pljava/pljava-1.4.0/build/classes/pljava'gmake[1]: Nothing to be done for `all'.gmake[1]: Leaving directory `/var/tmp/pljava/pljava-1.4.0/build/classes/pljava'gmake[1]: Entering directory `/var/tmp/pljava/pljava-1.4.0/build/classes/deploy'gmake[1]: Nothing to be done for `all'.gmake[1]: Leaving directory `/var/tmp/pljava/pljava-1.4.0/build/classes/deploy'gmake[1]: Entering directory `/var/tmp/pljava/pljava-1.4.0/build/objs'/opt/SUNWspro/bin/cc -c -O -xarch=386 -xchip=pentium -xspace -Xa -xildoff -xc99=none -xCC -KPIC -I. -I/usr/postgres/8.2/include/server -I/usr/postgres/8.2/include/internal -I/sfw10/builds/build/sfw10-patch/proto/root_i386/usr/include -I/sfw10/builds/build/sfw10-patch/proto/root_i386/usr/sfw/include -I/usr/sfw/include -I/sfw10/builds/build/sfw10-patch/usr/src/cmd/postgres/postgresql-8.2/krb5/include -DPKGLIBDIR=\"/usr/postgres/8.2/lib\" -I/var/tmp/pljava/pljava-1.4.0/src/C/
include -I/var/tmp/pljava/pljava-1.4.0/build/jni -DPGSQL_MAJOR_VER=8 -DPGSQL_MINOR_VER=2 -DPGSQL_PATCH_VER=6 -I"/usr/java/include" -I"/usr/java/include/solaris" /var/tmp/pljava/pljava-1.4.0/src/C/pljava/type/BigDecimal.c -o type/BigDecimal.o"/usr/postgres/8.2/include/server/pg_config_os.h", line 17: cannot find include file: <sys/isa_defs.h>"/usr/postgres/8.2/include/server/pg_trace.h", line 17: cannot find include file: <sys/sdt.h>"/usr/postgres/8.2/include/server/c.h", line 68: cannot find include file: <stdio.h>"/usr/postgres/8.2/include/server/c.h", line 69: cannot find include file: <stdlib.h>"/usr/postgres/8.2/include/server/c.h", line 70: cannot find include file: <string.h>"/usr/postgres/8.2/include/server/c.h", line 71: cannot find include file: <stddef.h>"/usr/postgres/8.2/include/server/c.h", line 72: cannot find include file: <stdarg.h>"/usr/postgres/8.2/include/server/c.h", line 74: cannot find include file: <strings.h>"/usr/postgres/8.2/include/server/c.h", lin
e 76: cannot find include file: <sys/types.h>"/usr/postgres/8.2/include/server/c.h", line 78: cannot find include file: <errno.h>"/usr/postgres/8.2/include/server/c.h", line 92: cannot find include file: <locale.h>"/usr/postgres/8.2/include/server/c.h", line 97: cannot find include file: <libintl.h>"/usr/postgres/8.2/include/server/c.h", line 328: syntax error before or at: Size"/usr/postgres/8.2/include/server/c.h", line 328: warning: old-style declaration or incorrect type for: Size"/usr/postgres/8.2/include/server/port.h", line 16: cannot find include file: <ctype.h>"/usr/postgres/8.2/include/server/port.h", line 16: fatal: too many errorscc: acomp failed for /var/tmp/pljava/pljava-1.4.0/src/C/pljava/type/BigDecimal.cgmake[1]: *** [type/BigDecimal.o] Error 2gmake[1]: Leaving directory `/var/tmp/pljava/pljava-1.4.0/build/objs'gmake: *** [c_all] Error 2# svcs postgresqlSTATE STIME FMRIdisabled 22:18:47 svc:/application/database/postgresql:version_81online
22:18:56 svc:/application/database/postgresql:version_82#I did install the postgresql devel and header package and jdbc package. What did I miss?
Regards,
Terence
> Date: Sun, 8 Jun 2008 12:02:38 -0600> From: books at ejurka.com> To: terencenwk at hotmail.com> CC: pljava-dev at pgfoundry.org> Subject: Re: [Pljava-dev] How to compile pljava in Solaris 10 5/08?> > > > Terence Ng wrote:> > > > I have installed Solaris Studio 12 the C compiler and build tool. After > > running:> > # cd /var/tmp/pljava/pljava-1.4.0> > # /opt/SUNWspro/bin/dmake> > dmake: Warning: Can't find `make.rules': No such file or directory> > dmake: Fatal error in reader: Makefile, line 30: Unexpected end of line seen> > > > You still need to use GNU make to build pljava, not dmake. Also since> you've installed sun studio 12 (and into a different location) instead> of the used sun studio 11, you'll need to either set CUSTOM_CC to point> to your cc binary, or make some symlinks.> > Kris Jurka
_________________________________________________________________
News, entertainment and everything you care about at Live.com. Get it now!
http://www.live.com/getstarted.aspx
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20080610/6b60a003/attachment.html>
From: | books at ejurka(dot)com (Kris Jurka) |
---|---|
To: | |
Subject: | [Pljava-dev] How to compile pljava in Solaris 10 5/08? |
Date: | 2008-06-11 16:18:49 |
Message-ID: | 484FFAE9.9000908@ejurka.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pljava-dev |
Terence Ng wrote:
>
> # echo $CUSTOM_CC
> /opt/SUNWspro/bin/cc
> # gmake
> "/usr/postgres/8.2/include/server/pg_config_os.h", line 17: cannot find
> include file: <sys/isa_defs.h>
> "/usr/postgres/8.2/include/server/pg_trace.h", line 17: cannot find
> include file: <sys/sdt.h>
> "/usr/postgres/8.2/include/server/c.h", line 68: cannot find include
> file: <stdio.h>
I don't know why it can't find stock system headers, that's pretty odd.
I might try setting the CUSTOM_COPT environment variable to
"-I/usr/include".
Kris Jurka
From: | terencenwk at hotmail(dot)com (Terence Ng) |
---|---|
To: | |
Subject: | [Pljava-dev] How to compile pljava in Solaris 10 5/08? |
Date: | 2008-06-12 15:47:59 |
Message-ID: | BAY105-W301FD43DB01E3C94AF2436D3AD0@phx.gbl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pljava-dev |
Kris,
Thanks. I can build pljava now. It is because the following packages are missing:
sdt.h -> dtrace (SUNWdtrp, SUNWdtrc)
stdio.h -> SunOS C/C++ header files (SUNWhea)
math.h -> Math and Microtasking Library (SUNWlibmr, SUNWlibm
Regards,
Terence
> Date: Wed, 11 Jun 2008 09:18:49 -0700> From: books at ejurka.com> To: terencenwk at hotmail.com> CC: pljava-dev at pgfoundry.org> Subject: Re: [Pljava-dev] How to compile pljava in Solaris 10 5/08?> > Terence Ng wrote:> > > > # echo $CUSTOM_CC> > /opt/SUNWspro/bin/cc> > # gmake> > "/usr/postgres/8.2/include/server/pg_config_os.h", line 17: cannot find > > include file: <sys/isa_defs.h>> > "/usr/postgres/8.2/include/server/pg_trace.h", line 17: cannot find > > include file: <sys/sdt.h>> > "/usr/postgres/8.2/include/server/c.h", line 68: cannot find include > > file: <stdio.h>> > I don't know why it can't find stock system headers, that's pretty odd.> I might try setting the CUSTOM_COPT environment variable to> "-I/usr/include".> > Kris Jurka
_________________________________________________________________
News, entertainment and everything you care about at Live.com. Get it now!
http://www.live.com/getstarted.aspx
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20080612/604e97df/attachment.html>
From: | terencenwk at hotmail(dot)com (Terence Ng) |
---|---|
To: | |
Subject: | [Pljava-dev] java.lang.NoClassDefFoundError |
Date: | 2008-07-21 08:53:48 |
Message-ID: | BAY105-W2717A6ADF28D282E29A440D38A0@phx.gbl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pljava-dev |
Hi Kris,
I suppose I have installed pljava adequately. But I discover that something wrong and want to re-install it again...but fail to install. I do not know where should I start. Please give me some suggestions.
How do I know the installation is okay?
# JAVA_HOME=/usr/jdk/instances/jdk1.5.0# export JAVA_HOME# java -cp /usr/postgres/8.2/lib/deploy.jar:/usr/postgres/8.2/jdbc/postgresql.jar org.postgresql.pljava.deploy.Deployer -install -user adempiere -database adempiere -password adempiereorg.postgresql.util.PSQLException: ERROR: schema "sqlj" already exists at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:1548) at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1316) at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:191) at org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:452) at org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:337) at org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:329) at org.postgresql.pljava.deploy.Deployer.createSQLJSchema(Deployer.java:351) at org.pos
tgresql.pljava.deploy.Deployer.main(Deployer.java:268)
# psql -d adempiere -U adempierePassword for user adempiere:Welcome to psql 8.2.6, the PostgreSQL interactive terminal.
Type: \copyright for distribution terms \h for help with SQL commands \? for help with psql commands \g or terminate with semicolon to execute query \q to quit
adempiere=# SELECT sqlj.install_jar('file:///opt/Adempiere/lib/sqlj.jar','sqlj',true);ERROR: function sqlj.install_jar("unknown", "unknown", boolean) does not existLINE 1: SELECT sqlj.install_jar('file:///opt/Adempiere/lib/sqlj.jar'... ^HINT: No function matches the given name and argument types. You may need to add explicit type casts.adempiere=# \qcould not save history to file "//.psql_history": Permission denied
# psql -d adempiere -U adempiere -f /usr/postgres/8.2/share/install.sqlPassword for user adempiere:psql:/usr/postgres/8.2/share/install.sql:1: ERROR: schema "sqlj" already existsGRANTpsql:/usr/postgres/8.2/share/install.sql:6: ERROR: could not load library "/usr/postgres/8.2/lib/pljava.so": ld.so.1: postgres: fatal: libjvm.so: open failed: No such file or directorypsql:/usr/postgres/8.2/share/install.sql:8: ERROR: function sqlj.java_call_handler() does not existpsql:/usr/postgres/8.2/share/install.sql:12: ERROR: could not load library "/usr/postgres/8.2/lib/pljava.so": ld.so.1: postgres: fatal: libjvm.so: open failed: No such file or directorypsql:/usr/postgres/8.2/share/install.sql:14: ERROR: function sqlj.javau_call_handler() does not existpsql:/usr/postgres/8.2/share/install.sql:23: NOTICE: CREATE TABLE will create implicit sequence "jar_repository_jarid_seq1" for serial column "jar_repository.jarid"psql:/usr/postgres/8.2/share/install.sql:23: ERROR: relation "jar_r
epository" already existsGRANTpsql:/usr/postgres/8.2/share/install.sql:32: NOTICE: CREATE TABLE will create implicit sequence "jar_entry_entryid_seq1" for serial column "jar_entry.entryid"psql:/usr/postgres/8.2/share/install.sql:32: ERROR: relation "jar_entry" already existsGRANTALTER TABLEpsql:/usr/postgres/8.2/share/install.sql:43: ERROR: relation "classpath_entry" already existsGRANTpsql:/usr/postgres/8.2/share/install.sql:50: NOTICE: CREATE TABLE will create implicit sequence "typemap_entry_mapid_seq1" for serial column "typemap_entry.mapid"psql:/usr/postgres/8.2/share/install.sql:50: ERROR: relation "typemap_entry" already existsGRANTpsql:/usr/postgres/8.2/share/install.sql:55: ERROR: language "java" does not existpsql:/usr/postgres/8.2/share/install.sql:59: ERROR: language "java" does not existpsql:/usr/postgres/8.2/share/install.sql:63: ERROR: language "java" does not existpsql:/usr/postgres/8.2/share/install.sql:67: ERROR: language "java" does not existpsql:
/usr/postgres/8.2/share/install.sql:71: ERROR: language "java" does not existpsql:/usr/postgres/8.2/share/install.sql:75: ERROR: language "java" does not existpsql:/usr/postgres/8.2/share/install.sql:79: ERROR: language "java" does not existpsql:/usr/postgres/8.2/share/install.sql:83: ERROR: language "java" does not existpsql:/usr/postgres/8.2/share/install.sql:87: ERROR: language "java" does not exist#
Regards,
Terence
_________________________________________________________________
Explore the seven wonders of the world
http://search.msn.com/results.aspx?q=7+wonders+world&mkt=en-US&form=QBRE
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20080721/29e7f857/attachment.html>
From: | books at ejurka(dot)com (Kris Jurka) |
---|---|
To: | |
Subject: | [Pljava-dev] java.lang.NoClassDefFoundError |
Date: | 2008-07-21 09:10:10 |
Message-ID: | 48845272.2080707@ejurka.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pljava-dev |
Terence Ng wrote:
>
> I suppose I have installed pljava adequately. But I discover that
> something wrong and want to re-install it again...but fail to install..
> I do not know where should I start. Please give me some suggestions.
>
I don't believe your install worked correctly. To clear out the old
installation there should be an uninstall.sql alongside the install.sql
file. So I'd give that a shot.
> psql:/usr/postgres/8.2/share/install.sql:6: ERROR: could not load
> library "/usr/postgres/8.2/lib/pljava.so": ld.so.1: postgres: fatal:
> libjvm.so: open failed: No such file or directory
This is your real problem here. I'm guessing you haven't set
LD_LIBRARY_PATH appropriately prior to starting the server.
Kris Jurka
From: | terencenwk at hotmail(dot)com (Terence Ng) |
---|---|
To: | |
Subject: | [Pljava-dev] java.lang.NoClassDefFoundError |
Date: | 2008-07-21 15:23:39 |
Message-ID: | BAY105-W43CAC2B0DBA7507EFA28F0D38A0@phx.gbl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pljava-dev |
Hi Kris,
After I set LD_LIBRARY_PATH and run uninstall.sql, there still has an error saying "java" does not exit. Why?
Do I have to set /etc/ld.so.conf.d/postgresql.conf (as in SLES10) when I am using SOLARIS 10?
# echo $JAVA_HOME/usr/jdk/instances/jdk1.5.0# echo $LD_LIBRARY_PATH/usr/postgres/8.2/lib:/usr/jdk/instances/jdk1.5.0/jre/lib/amd64:/usr/jdk/instances/jdk1.5.0/jre/lib/amd64/native_threads:/usr/jdk/instances/jdk1.5.0/jre/lib/amd64/server# echo $JAVA_HOME/usr/jdk/instances/jdk1.5.0# svcadm restart postgresql:version_82# psql -d adempiere -U adempiere -f /var/tmp/pljava/pljava-1.4.0/src/sql/uninstall.sqlPassword for user adempiere:psql:/var/tmp/pljava/pljava-1.4.0/src/sql/uninstall.sql:1: ERROR: language "java" does not existpsql:/var/tmp/pljava/pljava-1.4.0/src/sql/uninstall.sql:2: ERROR: language "javau" does not existpsql:/var/tmp/pljava/pljava-1.4.0/src/sql/uninstall.sql:3: ERROR: schema "sqlj" does not exist#Regards, Terence
> Date: Mon, 21 Jul 2008 03:10:10 -0600> From: books at ejurka.com> To: terencenwk at hotmail.com> CC: pljava-dev at pgfoundry.org> Subject: Re: [Pljava-dev] java.lang.NoClassDefFoundError> > > > Terence Ng wrote:> > > > I suppose I have installed pljava adequately. But I discover that > > something wrong and want to re-install it again...but fail to install.. > > I do not know where should I start. Please give me some suggestions.> > > > I don't believe your install worked correctly. To clear out the old> installation there should be an uninstall.sql alongside the install.sql> file. So I'd give that a shot.> > > psql:/usr/postgres/8.2/share/install.sql:6: ERROR: could not load > > library "/usr/postgres/8.2/lib/pljava.so": ld.so.1: postgres: fatal: > > libjvm.so: open failed: No such file or directory> > This is your real problem here. I'm guessing you haven't set> LD_LIBRARY_PATH appropriately prior to starting the server.> > Kris Jurka
_________________________________________________________________
Discover the new Windows Vista
http://search.msn.com/results.aspx?q=windows+vista&mkt=en-US&form=QBRE
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20080721/2417ed8e/attachment.html>
From: | terencenwk at hotmail(dot)com (Terence Ng) |
---|---|
To: | |
Subject: | [Pljava-dev] language "java" does not exist |
Date: | 2008-07-26 16:57:30 |
Message-ID: | BAY105-W50C33C8F256079ABC90052D3810@phx.gbl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pljava-dev |
Hi TrifonAfter I set LD_LIBRARY_PATH and run uninstall.sql to clear previous installation, there still has an error saying "java" does not exit. Why? What did I miss? I have explicitly set LD_LIBRARY_PATH and set in /usr/ld/ld.config by using crle -u -i ...
I have set the dynamic_library_path='$libdir:/usr/postgres/8.2/lib' in postgresql.conf
# echo $LD_LIBRARY_PATH/usr/postgres/8.2/lib:/usr/jdk/instances/jdk1.5.0/jre/lib/amd64:/usr/jdk/instances/jdk1.5.0/jre/lib/amd64/native_threads:/usr/jdk/instances/jdk1.5.0/jre/lib/amd64/server# echo $JAVA_HOME/usr/jdk/instances/jdk1.5.0
# java -versionjava version "1.5.0_15"Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_15-b04)Java HotSpot(TM) Client VM (build 1.5.0_15-b04, mixed mode, sharing)# svcadm restart postgresql:version_82# psql -d adempiere -U adempiere -f /var/tmp/pljava/pljava-1.4.0/src/sql/uninstall.sqlPassword for user adempiere:psql:/var/tmp/pljava/pljava-1.4.0/src/sql/uninstall.sql:1: ERROR: language "java" does not existpsql:/var/tmp/pljava/pljava-1.4.0/src/sql/uninstall.sql:2: ERROR: language "javau" does not existpsql:/var/tmp/pljava/pljava-1.4.0/src/sql/uninstall.sql:3: ERROR: schema "sqlj" does not exist#Regards, Terence
_________________________________________________________________
Connect to the next generation of MSN Messenger?
http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-us&source=wlmailtagline
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20080727/3a6c7af8/attachment.html>
From: | books at ejurka(dot)com (Kris Jurka) |
---|---|
To: | |
Subject: | [Pljava-dev] language "java" does not exist |
Date: | 2008-07-29 17:15:19 |
Message-ID: | 488F5027.2090200@ejurka.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pljava-dev |
Terence Ng wrote:
>
> After I set LD_LIBRARY_PATH and run uninstall.sql to clear previous
> installation, there still has an error saying "java" does not exit.
> Why? What did I miss?
If your previous installation didn't get completely installed than the
uninstall will fail to uninstall some parts of it. That's expected.
Also if you run the uninstall script multiple times it should only do
something interesting on the first run. I believe you've sufficiently
uninstalled it to begin the installation again.
Kris Jurka
From: | terencenwk at hotmail(dot)com (Terence Ng) |
---|---|
To: | |
Subject: | [Pljava-dev] language "java" does not exist |
Date: | 2008-07-30 14:35:00 |
Message-ID: | BAY105-W53EF6B8038DFD02D2B72F7D37D0@phx.gbl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | PostgreSQL : PostgreSQL 메일 링리스트 : 2008-07-30 이후 롤 토토 14:35 |
I don't know why it cannot find libjvm.so and java. What should I do?# echo $LD_LIBRARY_PATH/usr/jdk/instances/jdk1.5.0/jre/lib/i386:/usr/jdk/instances /jdk1.5.0/jre/lib/i386/client:/usr/jdk/instances/jdk1.5.0/jre/lib/i386/native_threads# echo $LD_LIBRARY_PATH_64/usr/jdk/instances/jdk1.5.0/jre/lib/amd64:/usr/jdk/instances/jdk1.5.0/jre/lib/amd64/server:/usr/jdk/instances/jdk1.5.0/jre/lib/amd64/native_threads# echo $JAVA_HOME/usr/jdk/instances/jdk1.5.0# java -versionjava version "1.5.0_15"Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_15-b04)Java HotSpot(TM) Client VM (build 1.5.0_15-b04, mixed mode, sharing)# psql -d adempiere -U adempiere -f install.sqlPassword for user adempiere:CREATE SCHEMAGRANTpsql:install.sql:6: ERROR: could not load library "/usr/postgres/8.2/lib/pljava.so": ld.so.1: postgres: fatal: libjvm.so: open failed: No such file or directorypsql:install.sql:8: ERROR: function sqlj.java_call_handler() does not existpsql:install.sql:12: ERROR: could not load library "/usr/postgres/8.2/lib/pljava.so": ld.so.1: postgres: fatal: libjvm.so: open failed: No such file or directorypsql:install.sql:14: ERROR: function sqlj.javau_call_handler() does not existpsql:install.sql:23: NOTICE: CREATE TABLE will create implicit sequence "jar_repository_jarid_seq" for serial column "jar_repository.jarid"psql:install.sql:23: NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "jar_repository_pkey" for table "jar_repository"psql:install.sql:23: NOTICE: CREATE TABLE / UNIQUE will create implicit index "jar_repository_jarname_key" for table "jar_repository"CREATE TABLEGRANTpsql:install.sql:32: NOTICE: CREATE TABLE will create implicit sequence "jar_entry_entryid_seq" for serial column "jar_entry.entryid"psql:install.sql:32: NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "jar_entry_pkey" for table "jar_entry"psql:install.sql:32: NOTICE: CREATE TABLE / UNIQUE will create implicit index "jar_entry_jarid_key" for table "jar_entry"CREATE TABLEGRANTALTER TABLEpsql:install.sql:43: NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "classpath_entry_pkey" for table "classpath_entry"CREATE TABLEGRANTpsql:install.sql:50: NOTICE: CREATE TABLE will create implicit sequence "typemap_entry_mapid_seq" for serial column "typemap_entry.mapid"psql:install.sql:50: NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "typemap_entry_pkey" for table "typemap_entry"CREATE TABLEGRANTpsql:install.sql:55: ERROR: language "java" does not existpsql:install.sql:59: ERROR: language "java" does not existpsql:install.sql:63: ERROR: language "java" does not existpsql:install.sql:67: ERROR: language "java" does not existpsql:install.sql:71: ERROR: language "java" does not existpsql:install.sql:75: ERROR: language "java" does not existpsql:install.sql:79: ERROR: language "java" does not existpsql:install.sql:83: ERROR: language "java" does not existpsql:install.sql:87: ERROR: language "java" does not exist# Terence Ng
> Date: Tue, 29 Jul 2008 11:15:19 -0600> From: books at ejurka.com> To: terencenwk at hotmail.com> CC: pljava-dev at pgfoundry.org> Subject: Re: language "java" does not exist> > Terence Ng wrote:> > > > After I set LD_LIBRARY_PATH and run uninstall.sql to clear previous > > installation, there still has an error saying "java" does not exit. > > Why? What did I miss?> > If your previous installation didn't get completely installed than the > uninstall will fail to uninstall some parts of it. That's expected. > Also if you run the uninstall script multiple times it should only do > something interesting on the first run. I believe you've sufficiently > uninstalled it to begin the installation again.> > Kris Jurka
_________________________________________________________________
Connect to the next generation of MSN Messenger?
http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-us&source=wlmailtagline
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20080730/a2df9d67/attachment.html>
From: | books at ejurka(dot)com (Kris Jurka) |
---|---|
To: | |
Subject: | [Pljava-dev] language "java" does not exist |
Date: | 2008-07-30 15:00:29 |
Message-ID: | 4890820D.7070206@ejurka.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pljava-dev |
Terence Ng wrote:
> I don't know why it cannot find libjvm.so and java. What should I do?
>
> # echo $LD_LIBRARY_PATH
> /usr/jdk/instances/jdk1.5.0/jre/lib/i386:/usr/jdk/instances
> /jdk1.5.0/jre/lib/i386/client:/usr/jdk/instances/jdk1.5.0/jre/lib/i386/native_threads
> psql:install.sql:6: ERROR: could not load library
> "/usr/postgres/8.2/lib/pljava.so": ld.so.1: postgres: fatal: libjvm.so:
> open failed: No such file or directory
Setting LD_LIBRARY_PATH in your current environment doesn't help. You
need it set in the server's environment.
Kris Jurka
From: | terencenwk at hotmail(dot)com (Terence Ng) |
---|---|
To: | |
Subject: | [Pljava-dev] language "java" does not exist |
Date: | 2008-07-30 16:32:41 |
Message-ID: | BAY105-W30AE42E4EF802C925E3131D37D0@phx.gbl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pljava-dev |
I am sorry. I do not have any idea to set the server's environment. Could you give me some hints, so that I can as least look for the instructions.
Thanks in advance,
Terence
> Date: Wed, 30 Jul 2008 09:00:29 -0600> From: books at ejurka.com> To: terencenwk at hotmail.com> CC: pljava-dev at pgfoundry.org> Subject: Re: language "java" does not exist> > Terence Ng wrote:> > I don't know why it cannot find libjvm.so and java. What should I do?> > > > # echo $LD_LIBRARY_PATH> > /usr/jdk/instances/jdk1.5.0/jre/lib/i386:/usr/jdk/instances > > /jdk1.5.0/jre/lib/i386/client:/usr/jdk/instances/jdk1.5.0/jre/lib/i386/native_threads> > > psql:install.sql:6: ERROR: could not load library > > "/usr/postgres/8.2/lib/pljava.so": ld.so.1: postgres: fatal: libjvm.so: > > open failed: No such file or directory> > Setting LD_LIBRARY_PATH in your current environment doesn't help. You > need it set in the server's environment.> > Kris Jurka
_________________________________________________________________
Explore the seven wonders of the world
http://search.msn.com/results.aspx?q=7+wonders+world&mkt=en-US&form=QBRE
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20080731/075bc417/attachment.html>