From: | Scott Marlowe <smarlowe(at)g2switchworks(dot)com> |
---|---|
To: | ElayaRaja S <elayaraja(dot)s(at)gmail(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Uninstall existing - postgesql 7.3.2 |
Date: | 2005-04-18 19:39:41 |
Message-ID: | 1113853181.20921.531.camel@state.g2switchworks.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
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(at)set root]# rpm -e postgresql
> error: package postgresql is not installed
>
> if i try to check the version it was displaying
> [root(at)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.
From | Date | Subject | |
---|---|---|---|
Next Message | Harald Fuchs | 2005-04-18 19:49:25 | Re: Plpgsql function with unknown number of args |
Previous Message | Scott Marlowe | 2005-04-18 19:37:04 | Re: Pgsql config file |