How to stop puma-dev without uninstalling? #318
-
I want to periodically run some other apps on port 80, but can not do so since puma-dev is occupying that port. Despite being installed via brew, it is not possible to control So the question is: how do I temporarily force puma-dev to stop and do NOT restart after being killed, until I explicitly want it back up again? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You should be able to suspend and resume the daemon using: launchctl unload ~/Library/LaunchAgents/io.puma.dev.plist
launchctl load ~/Library/LaunchAgents/io.puma.dev.plist Edit: Use load/unload instead of start/stop. |
Beta Was this translation helpful? Give feedback.
puma-dev -setup
configures itself via launchd asio.puma.dev
.You should be able to suspend and resume the daemon using:
Edit: Use load/unload instead of start/stop.