web-dev-qa-db-ja.com

OSX Sierraでpostgresをアンインストールする方法

こちら を読んで、自作で完全にpostgresをアンインストールしたいのですが、brew uninstall postgresqlを使用しましたが、この応答が返ってきました。

No such keg: /usr/local/Cellar/postgresql

ps auxwww | grep postgresを実行すると/usr/local/opt/postgresql94/bin/postgres -D /usr/local/var/postgresが表示されるため、postgresが実行されていることがわかります。何が悪いのですか?私はマックシエラを持っています

6
stackjlei

自作でpostgresをインストールしました。次の手順でアンインストールしました。

次のコマンドを実行して、postgresql94のような正しい名前を探します。名前は異なる場合があり、それに応じて確認する必要があります。

brew list

正しい名前を見つけたら、次のコマンドを実行してpostgresをアンインストールします。

Sudo brew uninstall postgresql94

これでアンインストールが完了するはずです。


同じのショートカットコマンドは

Sudo brew list | grep postgres | xargs brew uninstall
13