skip to Main Content

So right now due to ERP system that I use in company I have heavily modified version 11 of Postgresql.
Now I need to have a clean version of Postgresql installed? Is that somehow possible to install Postgresql twice?

2

Answers


  1. Yes, it is possible (see this answer also), but settings will slightly be different depending on OS that you use. Postgres uses by default port 5432 but you can change this, so even if you need both of versions to run at the same time it is not a problem. You just need to set a correct port. So simply put you can do that but need to change config file of one of the versions.

    Login or Signup to reply.
  2. you can install the new version in another directory and start new postgresql in another port 5432 (example: 5433)

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search