Обсуждение: Uninstall existing - postgesql 7.3.2

Поиск
Список
Период
Сортировка

Uninstall existing - postgesql 7.3.2

От
ElayaRaja S
Дата:
Hi,
 I am using Redhat Linux 9, I need to uninstall postfesql 7.3.2 and
 i have to install postgresql 7.4.5. Plz let me know how to uninstall
completely - postgesql 7.3.2

I am getting as [root@set root]# rpm -e postgresql
error: package postgresql is not installed

if i try to check the version it was displaying
[root@set root]# postgres --version
postgres (PostgreSQL) 7.3.2

--
Warm Regards,

S.ElayaRaja
Mobile:  (+91) 98450 59540
E-Mail:  elayaraja.s@gmail.com
            raja_nk@hotmail.com

Re: Uninstall existing - postgesql 7.3.2

От
Scott Marlowe
Дата:
On Mon, 2005-04-18 at 14:23, ElayaRaja S wrote:
> Hi,
>  I am using Redhat Linux 9, I need to uninstall postfesql 7.3.2 and
>  i have to install postgresql 7.4.5. Plz let me know how to uninstall
> completely - postgesql 7.3.2
>
> I am getting as [root@set root]# rpm -e postgresql
> error: package postgresql is not installed
>
> if i try to check the version it was displaying
> [root@set root]# postgres --version
> postgres (PostgreSQL) 7.3.2

Try this first:

rpm -qa|grep -i postgresql

and see what the output is.  Then you can try this:

rpm -e `rpm -qa|grep -i postgresql`

and see if that can uninstall it.

Make sure and run pg_dumpall to get a complete backup of your database
first.