Hello, The uninstaller will not be created when you run the installer in upgrade mode. You can use these steps to uninstall postgresql from your mac. i) Stop the server. sudo launchctl unload /Library/LaunchDaemons/com.edb.launchd.postgresql-8.4.plist ii) Remove the plist file sudo rm -f /Library/LaunchDaemons/com.edb.launchd.postgresql-8.4.plist iii) Remove the Applications Menu. sudo rm -f "/Applications/PostgreSQL 8.4" iv) Remove the installation directory sudo rm -rf /Library/PostgreSQL/8.4 (Note: You can backup your data directory in case you need it.) v) Remove the 'postgres' user sudo dscl . delete /Users/postgres (Note: This step is optional) vi) Remove the ini file sudo rm -f /etc/postgres-reg.ini After these steps, PostgreSQL is completely removed from your system. You can run the latest installer again to install PostgreSQL (You can also point the installation to use your backed up data directory also). This time it will create the uninstaller. Hope it helps.
This message was edited 1 time. Last update was at 26/07/2010 01:33:32
|