How to uninstall Postgres on Iinux.

Started by Ly Lam Ngoc Bichover 20 years ago5 messagesgeneral
Jump to latest
#1Ly Lam Ngoc Bich
ly.bich@ais.cmc.osaka-u.ac.jp

I am using Linux Fedora 3 . I've installed Postgres with
postgresql-8.0.3.tar.gz package , so there is no rpm package when I
check with
rpm -qa|grep postgresql

Please show me the way to uninstall PostgresSQL.

Sincerly yours,

#2Doug McNaught
doug@mcnaught.org
In reply to: Ly Lam Ngoc Bich (#1)
Re: How to uninstall Postgres on Iinux.

Ly Lam Ngoc Bich <ly.bich@ais.cmc.osaka-u.ac.jp> writes:

I am using Linux Fedora 3 . I've installed Postgres with
postgresql-8.0.3.tar.gz package , so there is no rpm package when I
check with
rpm -qa|grep postgresql

Please show me the way to uninstall PostgresSQL.

You should be able to go into the source directory where you compiled
PG and do 'make uninstall'.

-Doug

#3suresh ramasamy
suresh.sql@gmail.com
In reply to: Ly Lam Ngoc Bich (#1)
Re: How to uninstall Postgres on Iinux.

On 10/6/05, Ly Lam Ngoc Bich <ly.bich@ais.cmc.osaka-u.ac.jp> wrote:

I am using Linux Fedora 3 . I've installed Postgres with
postgresql-8.0.3.tar.gz package , so there is no rpm package when I
check with
rpm -qa|grep postgresql

Please show me the way to uninstall PostgresSQL.

Sincerly yours,

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match

****************

Go the installation directory and try
#make uninstall - > if it doesn't work then do the following

# make clean
# make dist clean
and remove the directory manually

regards
suresh

#4Jonathan Trites
tritesnikov@gmail.com
In reply to: suresh ramasamy (#3)
Re: How to uninstall Postgres on Iinux.

On 10/6/05, suresh ramasamy <suresh.sql@gmail.com> wrote:

On 10/6/05, Ly Lam Ngoc Bich <ly.bich@ais.cmc.osaka-u.ac.jp> wrote:

I am using Linux Fedora 3 . I've installed Postgres with
postgresql-8.0.3.tar.gz package , so there is no rpm package when I
check with
rpm -qa|grep postgresql

Please show me the way to uninstall PostgresSQL.

Sincerly yours,

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match

****************

Go the installation directory and try
#make uninstall - > if it doesn't work then do the following

# make clean
# make dist clean
and remove the directory manually

I think he wants to know how to uninstall the files that were
installed with 'make install', not the source directory.

#5Jonathan Trites
tritesnikov@gmail.com
In reply to: Jonathan Trites (#4)
Re: How to uninstall Postgres on Iinux.

Go the installation directory and try
#make uninstall - > if it doesn't work then do the following

# make clean
# make dist clean
and remove the directory manually

I think he wants to know how to uninstall the files that were
installed with 'make install', not the source directory.

Nevermind, wow I'm tired, should read the entire email and not just
the last three lines.