dredbound
dredbound

Reputation: 1659

Safely Making Minor Postgres Upgrade

I currently have postgres 9.5.2 installed on my Mac OSX machine. I want to upgrade it to postgres 9.5.4 (which is not the latest 9.5.X version). What is the best way of doing this? I installed Postgres initially via homebrew.

Upvotes: 1

Views: 233

Answers (1)

Laurenz Albe
Laurenz Albe

Reputation: 246493

Shutdown the database, upgrade the software, start the database with the new software. The documentation will tell you that minor upgrades are binary compatible.

Upvotes: 1

Related Questions