Used this guide to set up Ruby on Rails on my EC2 instance. I associated an elastic ip to the instance and want to bind a test application to that ip. I did so with rails server --binding=server_public_IP
but I messed something up and it doesn't work.
I've tried binding another arbitrary rails app to the ip, and it tells me that the address is not available - because it is still bound to my old one apparently. Because it was a throw-away test app, I deleted the folder but the binding still persists. How do I unbind a Rails application from my ip?
Update:
I think I may have found what I need to continue here, but I still would like to know if there is a rails server --binding unbind
sort of command out there.