I want to upgrade my postgres8.3 to 8.4 for single domain. Don't affect other domain. How to manage it. Is it possible?
feedback
|
migrated from stackoverflow.com Jun 8 '11 at 7:06
This question came from our site for professional and enthusiast programmers.
|
It is possible... but not easy in all cases. In most distributions, it will be hard to install both of them using the package manager (because they will both provide the same capabilities). Supposing 8.3 has been installed using the package manager, you have to install 8.4 manually (using directly the archives you'll find on the official site). The important step I can directly see :
Hope it will help you. | |||
|
feedback
|
|
Assuming you're compiling from source, no problem. Set an appropriate prefix and data dir during the configure step, and you're good to go. If you're relying on your system's package manager, that's probably not going to work. If you're doing this as a migration process from 8.3 to 8.4, it'll be cleaner to take a reliable backup and then upgrade in place; if that's what you're doing, consider the forthcoming 9.x branch of postgres. | |||
|
feedback
|