Homebrew 没有完全卸载 nginx

mot*_*lrd 7 homebrew nginx macos

我昨天在我的机器上安装了 nginx 使用

brew install nginx
Run Code Online (Sandbox Code Playgroud)

今天我想删除软件,所以我尝试了

brew uninstall nginx
Run Code Online (Sandbox Code Playgroud)

已正确执行。事实上,如果我再次要求卸载 nginx,我会得到

Error: No such keg: /usr/local/Cellar/nginx
Run Code Online (Sandbox Code Playgroud)

问题是下面的文件

/usr/local/etc/nginx
Run Code Online (Sandbox Code Playgroud)

尚未删除。

删除它们的正确方法是什么?
谢谢

小智 9

像往常一样,使用

rm -f -R /usr/local/nginx
rm -f /usr/local/sbin/nginx
Run Code Online (Sandbox Code Playgroud)


小智 5

从终端,

  1. 使用以下命令卸载 nginx: brew remove nginx

  2. 使用以下命令删除 nginx 配置文件: rm -r /usr/local/var/run/nginx