We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When starting Rails in using foreman like:
Procfile
web: rails server
It defaults to taking port 5000. On newer osx versions this port is now taken by MAC OSX though, so it won't start (or in some cases do start but the requests go to the airport process): https://www.reddit.com/r/webdev/comments/qg8yt9/apple_took_over_port_5000_in_the_latest_macos/
5000
Of course you can fix this by specifying a -p but I guess the default should be available.
-p
The text was updated successfully, but these errors were encountered:
Relevant — this is due to macOS Monterey's new "AirPlay Audio from another Apple device to your Mac Desktop" feature:
https://daily-dev-tips.com/posts/thank-you-apple-for-hijacking-port-5000/
Sorry, something went wrong.
No branches or pull requests
When starting Rails in using foreman like:
Procfile
It defaults to taking port
5000
. On newer osx versions this port is now taken by MAC OSX though, so it won't start (or in some cases do start but the requests go to the airport process): https://www.reddit.com/r/webdev/comments/qg8yt9/apple_took_over_port_5000_in_the_latest_macos/Of course you can fix this by specifying a
-p
but I guess the default should be available.The text was updated successfully, but these errors were encountered: