Scott Marlowe wrote:
You do not need the packages to uninstall them. do this: rpm -qa|grep -i postgres and see what packages are listed. Then rpm -e packagename1 packagename2 ... to remove them all.
Note that you may have issues removing the compat-postgresql-libs packages, as things other than the main database sofware you can have installed will rely on those. Here's what I do to get rid of all the rest of them in one easy command:
rpm -qa | egrep "^postgresql" | xargs rpm -e -- Greg Smith, 2ndQuadrant US greg@xxxxxxxxxxxxxxx Baltimore, MD PostgreSQL Training, Services and Support www.2ndQuadrant.us Author, "PostgreSQL 9.0 High Performance" Pre-ordering at: https://www.packtpub.com/postgresql-9-0-high-performance/book -- Sent via pgsql-admin mailing list (pgsql-admin@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-admin