Re: Problem creating a function

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: c(at)cornelia-boenigk(dot)de
Cc: Liste pg_general <pgsql-general(at)postgresql(dot)org>
Subject: Re: Problem creating a function
Date: 2006-07-19 17:40:58
Message-ID: 14328.1153330858@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Cornelia Boenigk <c(at)cornelia-boenigk(dot)de> writes:
> in english: /home/database/pgdata/cobis/bitvg/bitvg.so: cannot open
> shared object: file not found

> The file does exist in the path /home/database/pgdata/cobis/bitvg/:

The "file not found" might be coming from the dynamic loader trying to
load some other library that bitvg.so depends upon. You should try "ldd"
or local equivalent on bitvg.so to check whether all its dependencies
can be found. Also, try looking in the postmaster log --- on some
platforms, dynamic loader failures spit additional information to stderr
that can't be reported to you by the backend, but will be captured in
the postmaster log file.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Merlin Moncure 2006-07-19 17:41:32 Re: Difference between function and procedure?
Previous Message Cornelia Boenigk 2006-07-19 17:34:48 Re: Problem creating a function