当我在MacOS上运行nginx时。
➜ nginx nginx
dyld:未加载库:/usr/local/opt/openssl@1.1/lib/libssl.1.1.dylib 引自:/ usr / local / bin / nginx 原因:找不到图像 [1] 10170 abort nginx
答案 0 :(得分:0)
请首先安装HomeBrew http://brew.sh/。它是MacOS的软件包管理器,可以轻松安装各种Unix应用程序。
MacOS将提示您首先安装Xcode命令行工具(除非您已经拥有它们)。
安装后,如有必要,以下命令将告诉您如何完成安装:
brew doctor
//Then updates all packages with:
brew update
brew upgrade
//Then Install Nginx
brew install nginx
// Then automatically launch Nginx at startup with:
sudo cp /usr/local/opt/nginx/*.plist /Library/LaunchDaemons
sudo launchctl load -w /Library/LaunchDaemons/homebrew.mxcl.nginx.plist
祝你好运!
答案 1 :(得分:0)
我有一个问题,但是当我跑步时
brew uninstall nginx
然后
brew install nginx
它重新安装正确,我能够运行它而没有收到该错误。