Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ngrok ERR_NGROK_702 Too Many Connections

Tags:

ngrok

I'm using ngrok to put my web application online and make some tests. But, when I reload the page, the error ERR_NGROK_702 (Too Many Connections) appears, like the image below.

ngrok err_ngrok_702

Is there any way to solve or avoid it instead of buying a paid plan?

How can I decrease the inbound connection volume, as said in the message?

Or the only way is to wait some minutes and try again?

I'll appreciate any suggestions.

like image 745
Thiago Souza Avatar asked Dec 02 '16 19:12

Thiago Souza


3 Answers

You can use https://github.com/mmatczuk/go-http-tunnel it's self hosted open source ngrok alternative.

like image 59
mmatczuk Avatar answered Oct 03 '22 04:10

mmatczuk


Just wait 1 minute or two and refresh. Optimize the number of connections made to the service or else pay to avoid this limitation.

like image 30
corlaez Avatar answered Oct 03 '22 02:10

corlaez


Use Localtunnel insted of ngrok. https://theboroer.github.io/localtunnel-www/

You don't have to change the URL every time.

1) npm install -g localtunnel

2) lt --port 8081 --subdomain "your desired domain name"

eg: lt --port 8081 --subdomain myshopifyapp

like image 24
Arunjith R S Avatar answered Oct 03 '22 02:10

Arunjith R S