# See if mongo is in the launch/startup list
launchctl list | grep mongo
# Remove mongodb from the launch/startup
launchctl remove homebrew.mxcl.mongodb
# Kill the mongod process just in case it's running
pkill -f mongod
# Now you can safely remove mongodb using Homebrew
brew uninstall mongodb
5条答案
按热度按时间vtwuwzda1#
Nitin Jadhav版本为我工作,
brew uninstall mongodb
一直给我Error: No such keg: /usr/local/Cellar/mongodb
。我正在删除一个mongodb社区。使用cd /usr/local/Cellar
,然后运行ls -a
,然后运行rm -rf mongodb-community
来删除它nvbavucw2#
我建议你导航到你的
/usr/local/Cellar
并运行一个ls -a
,我安装了一个mongo的社区版本,但上面给出的命令没有选中它。yv5phkfx3#
对于在osx中有此错误的用户:
执行
brew list | grep mongo
例如,它可以显示如下内容:
使用
brew uninstall mongodb-community@4.2 mongodb-database-tools mongosh
删除它们同样执行
launchctl remove homebrew.mxcl.mongodb
,就像@anuvrat-tiku在他的回答中说的那样。lyfkaqu14#
运行以下命令从启动/启动中删除mongodb,并使用Homebrew卸载它:
只需在
/usr/local/bin/
中仔细检查以确保mongodb命令已被删除。cbeh67ev5#
对于卸载社区版本,我发现命令
brew uninstall mongodb-community
对我很有效。