/usr/local/opt/postgresql/*.plist 没有匹配

/usr/local/opt/postgresql/*.plist 没有匹配

我正在尝试在我的 macOS(Monterey 12.0.1)上安装 postgres。

我已经跑了brew install postgres,下一步就是跑ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents,但是当我跑的时候,我得到了zsh: no matches found: /usr/local/opt/postgresql/*.plist

答案1

目录地址是导致该问题的原因。将地址“/usr/local”更改为“/opt/homebrew/”应该可以解决问题。

答案2

我是 macOS 新手,也遇到了同样的问题。我通过“brew 安装 postgres”当我跑“ln -sfv /usr/local/opt/postgresql/.plist ~/Library/LaunchAgents”,我收到一个错误。*

对我来说,问题是我的 postgres 安装在不同的路径中,在我运行“brew install postgres”之后,我在概括堵塞: /opt/homebrew/Cellar/postgresql@14/14.5_5

对于我来说,使用以下命令:

ln -sfv /opt/homebrew/Cellar/postgresql@14/14.5_5/*.plist ~/Library/LaunchAgents

您可以尝试替换“在/usr/本地/opt/postgresql/.plist*” 路径是否正确?

相关内容