Error in teletype for atom: Connecting to peer timed out - github

I'm working on a group project using teletype, but when one of my peers tries to connect to the portal I opened, they just get the error "Connecting to peer timed out". When I try and connect to the portal my peer created, the application says something similar.
I know this is more of a logistics question, but is there any way to fix this? I haven't really been able to find a solution.

Related

Not able to connect to github

I am trying to connect to the github webpage but am not able to. It shows github.com refused to connect.
I have tried multiple times by flushing my dns and have even tried by connecting with my phone's connection but no luck. Please recommend something new.

MySQL Workbench cannot connect from home to Google Cloud SQL

I cannot connect to my Google Cloud SQL database from my Macbook Pro using MySQL Workbench.
I have read the help file here:
https://cloud.google.com/sql/docs/mysql/admin-tools
I have added an authorized IP address for my IP per
https://cloud.google.com/sql/docs/mysql/configure-ip#add
I created a user for the database with it set to allow to connect from any host. I get the error "Can't connect to MySQL server on 'XX.XXX.XX.XXX' (60)
I have also attempted to telnet and get a consistent error that I am unable to connect to the remote host
As far as I know, I've followed all the steps but it really seems I'm getting blocked even before the server. I am trying to connect from home and I don't believe my home firewall is blocking things. I am wondering if there's something I need to open up on the GCE firewall but I have successfully connected to this database from other outside tools (e.g., Zapier).
Your best action right now would be to create a proxy with public IP address.
https://cloud.google.com/sql/docs/mysql/connect-external-app
This link will walk you through that process. If this doesn’t solve your issue, then taking your question to ServerFault (Stackoverflow sister site) might give you a better idea of how to fix your issue.

wildfly crashes with WFLYPRT0053: Could not connect to http-remoting

I have installed the wildfly application server on Ubuntu 16.04; version: 10.1.0.Final, release-version: 2.2.0.Final
The server is configured with an port-offset of 100 so that:
Http management interface listening on http://127.0.0.1:10090/management
Admin console listening on http://127.0.0.1:10090
Everything seems to work for a while:
The management interface is accessible and I have also deployed a tiny sample application which works correctly (already undeployed, therefore shouldn't be the problem). After some minutes I suddenly get the following:
jboss-cli.sh[15286]: Failed to connect to the controller: The controller is not available at localhost:9990: java.net.ConnectException: WFLYPRT0053: Could not connect to http-remoting://localhost:9990. The connection failed: WFLYPRT0053: Could not connect to http-remoting://localhost:9990. The connection failed: Connection refused
I didn't do anything, just waited. Afterwards the instance seems to be unreachable.
After days of research I'm now ending up with asking you what's wrong with my configuration or what I'm missing.
And what is trying to connect to http-remoting://localhost:9990 (it's not me) and especially why is it doing so?
Thank you very much!
It's because your management controller is unreachable.
Possible reasons could be either your jboss is down or network is not allowing you to connect to it.
You can check that by typing command: telnet
It will show you the connection

Apple Push Notification not working on shared server

I want to send APN (Apple Push Notification) from PHP script. My PHP script is working fine and I receive notification in the iphone device as well when sending from localhost but when I upload the same script with same .pem file to the shared server it returns error...
Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.push.apple.com:2195 (Connection refused) in /mypath/SendPushNotification.php on line 28 Failed to connect: 111 Connection refused
From some source I get to know that to send APN port 2195 must be open which is not possible in the shared server plan. So I tried using dedicated server and it's working perfectly and I receive the notification on the device. I tried hard to find the solution for shared server but didn't find any solution.
My question: is it possible send APN without opening port 2195 from shared server? if Yes give some guidance.
No, Its not possible to send APN message without using 2195 port.
If you want to send push notification message from shared server, try using some third party tools like http://urbanairship.com/.
Some time ago I got the same error, and then I found that it ocurres because of the server, the proxy is blocking that port, because most of servers doesn't use that port as a common one(80 or 21).
In this case you could try asking for support on your server reseller , they can open that port (2195) for you, If your take this solution I would recommend also asking to open the port 2196 that port is used for feedback.
Another solution is to use a free push notification provider, like Parse which is really easy to use and implement on your app, also you can use UrbanAirship, but I preffer Parse ;)
Hope it helps
This is irritating and definitely port 2195 issue. Chat with your hosting provider and ask them to open the port. I also had same issue. My Local code was running peacefully in every condition like sandbox and production but it was failing on the server.
Dont get confused about .pem file path and that would be simple corresponding to your code. For me i put my certificates (.pem) in a directory named certs and gave path like this:
$apnsCert = 'certs/cert_prod.pem';
The code was not working on my apps production server. I wasted one and a half day on this but that ran great on first run when i put that on application's staging server. Reason!!!! Definitely port 2195 issue.
All the beat.

iPhone: Connection refused error while connection Apple's Push Notification Service

I have been scratching my head since long now to get rid of following error message.
Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.push.apple.com:2195 (Connection refused)
I have tried multiple times generating the correct certificate and made sure that project is signed with the correct bundle identifier.
I have also tried using testing script PHP(https://devforums.apple.com/message/50461) and Python (http://stackoverflow.com/questions/1052645/apple-pns-push-notification-services-sample-code) but both are giving same error message.
Could anyone please help me to know how to get rid of this error message?
Thanks.
Gotcha...Our firewall setup to not allow any other ports not listed in settings. Asked admin people to add it and it doesn't show this error message now....!! I have sent and message but didn't receive since last 5 minutes. I know that APNS messages are not guaranteed. Will wait for some more time. Hopefully it arrives.. :)