I need for the remote mysql db that I used to use fine in Heroku to connect to my newly updated server that now only allows specific ip addresses.
I setup the Proximo add-on as per the instructions and when I try to push it to Heroku the push works but the app crashes upon entry. I get the Heroku application crashed error page and not the 500 server error. I noticed that in my app's settings the dyno was configured as such: *web* bin/proximo thin -p $PORT -e $RACK_ENV -R $HEROKU_RACK start. The only difference is that I stuck in the bin/proximo at the start as per the instructions. Besides that, the dyno was configured with the other values. Here is a piece from the log (I removed my ip and app's hostname for security): 2013-01-31T01:42:04+00:00 heroku[slugc]: Slug compilation finished 2013-01-31T01:42:06+00:00 heroku[web.1]: Stopping all processes with SIGTERM 2013-01-31T01:42:07+00:00 app[web.1]: >> Stopping ... 2013-01-31T01:42:09+00:00 heroku[web.1]: Process exited with status 0 2013-01-31T01:42:11+00:00 heroku[web.1]: Starting process with command `bin/proximo thin -p 8594 -e production -R /home/heroku_rack/heroku.ru start` 2013-01-31T01:42:12+00:00 app[web.1]: Proxying traffic bound for 0.0.0.0/0 via Proximo host 23.xx.xx.xxx:1080 2013-01-31T01:42:12+00:00 app[web.1]: rm: cannot remove `/app/vendor/dante/socks.conf': Permission denied 2013-01-31T01:42:12+00:00 app[web.1]: bin/proximo: line 35: /app/vendor/dante/socks.conf: Permission denied 2013-01-31T01:42:12+00:00 app[web.1]: chmod: changing permissions of `/app/vendor/dante/bin/socksify': Operation not permitted 2013-01-31T01:42:13+00:00 heroku[web.1]: Process exited with status 1 2013-01-31T01:42:13+00:00 heroku[web.1]: State changed from starting to crashed 2013-01-31T01:42:13+00:00 heroku[web.1]: State changed from crashed to starting 2013-01-31T01:42:18+00:00 heroku[web.1]: Starting process with command `bin/proximo thin -p 54095 -e production -R /home/heroku_rack/heroku.ru start` 2013-01-31T01:42:18+00:00 app[web.1]: Proxying traffic bound for 0.0.0.0/0 via Proximo host 23.xx.xx.xxx:1080 2013-01-31T01:42:18+00:00 app[web.1]: rm: cannot remove `/app/vendor/dante/socks.conf': Permission denied 2013-01-31T01:42:18+00:00 app[web.1]: bin/proximo: line 35: /app/vendor/dante/socks.conf: Permission denied 2013-01-31T01:42:18+00:00 app[web.1]: chmod: changing permissions of `/app/vendor/dante/bin/socksify': Operation not permitted 2013-01-31T01:42:20+00:00 heroku[web.1]: Process exited with status 1 2013-01-31T01:42:20+00:00 heroku[web.1]: State changed from starting to crashed 2013-01-31T01:42:21+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/ host=my_ap.heroku.com fwd=71.230.121.127 dyno= queue= wait= connect= service= status=503 bytes= 2013-01-31T01:42:21+00:00 heroku[nginx]: <my_ip> - - [31/Jan/2013:01:42:21 +0000] "GET / HTTP/1.1" 503 601 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko/20100101 Firefox/18.0" my_app.heroku.com -- -- You received this message because you are subscribed to the Google Groups "Heroku" group. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/heroku?hl=en_US?hl=en --- You received this message because you are subscribed to the Google Groups "Heroku Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
