Re: psql undefined symbol error on Ubuntu

Поиск
Список
Период
Сортировка
От raghu ram
Тема Re: psql undefined symbol error on Ubuntu
Дата
Msg-id d331f2ee0907082048q22c21bd5m5395e1114c9c2dc4@mail.gmail.com
обсуждение исходный текст
Ответ на Re: psql undefined symbol error on Ubuntu  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: psql undefined symbol error on Ubuntu  ("Harsha Hegde" <harsha.hegde@vonage.com>)
Список pgsql-novice


On Thu, Jul 9, 2009 at 3:23 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
"Harsha Hegde" <harsha.hegde@vonage.com> writes:
> I have installed postgres client on an Ubuntu machine. However, when I
> try to run 'psql', I get this error message:

> # psql
> /usr/lib/postgresql/8.3/bin/psql: symbol lookup error:
> /usr/local/lib/libreadline.so.5: undefined symbol: PC

This is a readline problem --- it's missing some underlying library,
probably libtermcap.

                       regards, tom lane


This is library missing error and you have to soft link with libedit.so.2. use below command to soft link with library.

ln -s /lib/libreadline.so.5 /lib/libedit.so.2

Run the psql  as a postgres user,like
psql -d <database name> -p <port> -U <username>

Thanks & Regards,
Raghu Ram


--
Sent via pgsql-novice mailing list (pgsql-novice@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-novice

В списке pgsql-novice по дате отправления:

Предыдущее
От: raghu ram
Дата:
Сообщение: Re: cannot locate where dataase files are stored
Следующее
От: stuart@stuartbishop.net
Дата:
Сообщение: Re: psql undefined symbol error on Ubuntu