macos bash: service: command not found
时间: 2023-11-16 13:55:30 浏览: 154
-bash: mysql: command not found的问题与解决
5星 · 资源好评率100%
这个错误提示是因为在 macOS 上没有 service 命令。如果你想启动或停止某个服务,可以使用 launchctl 命令。例如,如果你想启动 Apache 服务,可以使用以下命令:
sudo launchctl load -w /System/Library/LaunchDaemons/org.apache.httpd.plist
如果你想停止 Apache 服务,可以使用以下命令:
sudo launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist
阅读全文