Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where does Homebrew put the delete_old_cluster.sh script after upgrading Postgres?

After upgrading Postgres via Homebrew and running brew postgresql-upgrade-database to migrate the database, the output shows Running this script will delete the old cluster's data files: ./delete_old_cluster.sh

Where can the script delete_old_cluster.sh be found? It's not in the current working directory.

like image 360
Ollie Glass Avatar asked Oct 18 '25 13:10

Ollie Glass


1 Answers

found mine in /usr/local/var/log along with the other installation logs

used this command to find it:

find / -name delete_old_cluster.sh
like image 193
Alf47 Avatar answered Oct 20 '25 16:10

Alf47