Thread: createlang plpgsql failing on redhatlinux7.2
<div style="background-color:"><div><p><br /><br />Hi All, </div>I'm getting some problem on "<strong>createlang plpgsql</strong>".with REDHATLINUX7.2 <div></div><p>These are all my system configurations..<p>We have a machine with RedhatLinix7.2, on top of this i upgraded the postgresql7.3.3 version. After creating a database, i'm trying to create alanguage for that database by using <strong>createlang plpgsql <dnname></strong><p>it throws an error " failed withsome missing files". so, i copied /<strong>usr/local/pgsql/plpgsql.so </strong>from Redhatlinux8.0 machine and triedagain to create a language. this time i got an error like <strong>'Load of file /usr/lib/pgsql/plpgsql.so failed :/lib/i686/libc.so.6:version GLIB_2.3 not found (required by /usr/lib/pgsql/plpgsql.so).</strong><p><strong>Kindly guideto solve this issue. all ur helps are highly appreciable..</strong><p>Thanks in advance,<p>Vijay<p><strong></strong> <p><strong></strong> <p> <p> </div><brclear="all" /><hr />A chance to meet AishwaryaRai. <a href="http://g.msn.com/8HMFENIN/2746??PS=">Win lucky prizes.</a>
Please don't post html-only messages to the list, it makes quoting hard... On Friday 12 September 2003 14:49, vijaykumar M wrote: > <P>We have a machine with RedhatLinix 7.2, on top of this i upgraded > the postgresql7.3.3 version. After creating a database, i'm trying to > create a language for that database by using <STRONG>createlang plpgsql > <dnname></STRONG></P> <P>it throws an error " failed with some > missing files". Hmm - we need to find out why the files are missing. First thing to try is "locate plpgsql.so" and see if that can find your library. If so, make sure you have its location added to /etc/ld.so.conf and re-run "ldconfig". If the file genuinely doesn't exist, did you install from RPM or source? If RPM, try "rpm -ql postgresql-server" to see what files it thinks it installed. If source, can you remember what options you chose to compile with, or do you have the source-directories still around? If you still have the source, there'll be a file called configuration.cache or similar that should hold your config options. > so, i copied /<STRONG>usr/local/pgsql/plpgsql.so > </STRONG>from Redhatlinux8.0 machine and tried again to create a language. > this time i got an error like <STRONG>'Load of file > /usr/lib/pgsql/plpgsql.so failed :/lib/i686/libc.so.6: version GLIB_2.3 not > found (required by /usr/lib/pgsql/plpgsql.so).</STRONG></P> RedHat changed their version of glibc between 7.2 and 8.0 - you can't just move libraries between these versions. -- Richard Huxton Archonet Ltd
rather do an rpm -qa | grep post to see if postgresql-pl-7.3.4-2PGDG is installed, it is the rpm for procedural languages in 7.3.* and didn't exist in the 7.2.* rpmset. Robert Treat On Fri, 2003-09-12 at 10:12, Richard Huxton wrote: > Please don't post html-only messages to the list, it makes quoting hard... > > On Friday 12 September 2003 14:49, vijaykumar M wrote: > > <P>We have a machine with RedhatLinix 7.2, on top of this i upgraded > > the postgresql7.3.3 version. After creating a database, i'm trying to > > create a language for that database by using <STRONG>createlang plpgsql > > <dnname></STRONG></P> <P>it throws an error " failed with some > > missing files". > > Hmm - we need to find out why the files are missing. First thing to try is > "locate plpgsql.so" and see if that can find your library. If so, make sure > you have its location added to /etc/ld.so.conf and re-run "ldconfig". > > If the file genuinely doesn't exist, did you install from RPM or source? > If RPM, try "rpm -ql postgresql-server" to see what files it thinks it > installed. > If source, can you remember what options you chose to compile with, or do you > have the source-directories still around? If you still have the source, > there'll be a file called configuration.cache or similar that should hold > your config options. > > > so, i copied /<STRONG>usr/local/pgsql/plpgsql.so > > </STRONG>from Redhatlinux8.0 machine and tried again to create a language. > > this time i got an error like <STRONG>'Load of file > > /usr/lib/pgsql/plpgsql.so failed :/lib/i686/libc.so.6: version GLIB_2.3 not > > found (required by /usr/lib/pgsql/plpgsql.so).</STRONG></P> > > RedHat changed their version of glibc between 7.2 and 8.0 - you can't just > move libraries between these versions. > > -- > Richard Huxton > Archonet Ltd > > ---------------------------(end of broadcast)--------------------------- > TIP 3: if posting/reading through Usenet, please send an appropriate > subscribe-nomail command to majordomo@postgresql.org so that your > message can get through to the mailing list cleanly -- Build A Brighter Lamp :: Linux Apache {middleware} PostgreSQL
On Friday 12 September 2003 16:49, Robert Treat wrote: > rather do an rpm -qa | grep post to see if postgresql-pl-7.3.4-2PGDG is > installed, it is the rpm for procedural languages in 7.3.* and didn't > exist in the 7.2.* rpmset. Ah, but the .so isn't in the -pl RPM (I'm guessing plpgsql is considered "core"). $ rpm -qif /usr/lib/pgsql/plpgsql.so Name : postgresql-server Relocations: (not relocateable) Version : 7.3.4 Vendor: (none) ... -- Richard Huxton Archonet Ltd
On Friday 12 September 2003 12:18, Richard Huxton wrote: > On Friday 12 September 2003 16:49, Robert Treat wrote: > > rather do an rpm -qa | grep post to see if postgresql-pl-7.3.4-2PGDG is > > installed, it is the rpm for procedural languages in 7.3.* and didn't > > exist in the 7.2.* rpmset. > > Ah, but the .so isn't in the -pl RPM (I'm guessing plpgsql is considered > "core"). > > $ rpm -qif /usr/lib/pgsql/plpgsql.so > Name : postgresql-server Relocations: (not relocateable) > Version : 7.3.4 Vendor: (none) > ... Right you are Richard, my apologies. I'll go crawl back under my rock now :-) Robert Treat -- Build A Brighter Lamp :: Linux Apache {middleware} PostgreSQL