instalação ngrok no Ubuntu 12.04

4

Tendo problemas para instalar o ngrok no Ubuntu, eu fui ao link e baixei para o Ubuntu, mas ele sempre dá um arquivo binário que não permite nos para executar no Ubuntu, Alguém pode sugerir qualquer outra forma de instalá-lo.

    
por Arvind 27.11.2015 / 10:01

3 respostas

5

Para instalar a versão de 32 bits:

wget https://dl.ngrok.com/ngrok_2.0.19_linux_386.zip
unzip ngrok_2.0.19_linux_386.zip

Depois disso

./ngrok

e você verá isso, testado no meu sistema de 32 bits.

NAME:
   ngrok - tunnel local ports to public URLs and inspect traffic

DESCRIPTION:
    ngrok exposes local networked services behinds NATs and firewalls to the
    public internet over a secure tunnel. Share local websites, build/test
    webhook consumers and self-host personal services.
    Detailed help for each command is available with 'ngrok help <command>'.
    Open http://localhost:4040 for ngrok's web interface to inspect traffic.

EXAMPLES:
    ngrok http 80                    # secure public URL for port 80 web server
    ngrok http -subdomain=baz 8080   # port 8080 available at baz.ngrok.io
    ngrok http foo.dev:80            # tunnel to host:port instead of localhost
    ngrok tcp 22                     # tunnel arbitrary TCP traffic to port 22
    ngrok tls -hostname=foo.com 443  # TLS traffic for foo.com to port 443
    ngrok start foo bar baz          # start tunnels from the configuration file

VERSION:
   2.0.19

AUTHOR:
  inconshreveable - <[email protected]>

COMMANDS:
   authtoken    save authtoken to configuration file
   credits  prints author and licensing information
   http     start an HTTP tunnel
   start    start tunnels by name from the configuration file
   tcp      start a TCP tunnel
   test     test ngrok service end-to-end
   tls      start a TLS tunnel
   update   update to the latest version
   version  print the version string
   help     Shows a list of commands or help for one command
    
por A.B. 27.11.2015 / 10:10
4

Funciona nas versões superiores, mas não tenho certeza sobre 12.04:

apt-get install ngrok-client
    
por MSS 23.04.2016 / 08:05
0

Eu tive um problema semelhante - executando o Ubuntu 16.04 LTS (64 bits). Eu segui as instruções @ NGROK , mas não consegui o comando ngrok http 8080 para responder como eu tinha lido. Depois de ler e assistir este vídeo do YouTube, encontrei o que precisava. NOTA: O vídeo não tem áudio falado, mas indica claramente onde instalar o arquivo executável descompactado e essa foi a chave.

Após o download eu corri o seguinte no terminal do mesmo diretório onde o arquivo zipado estava localizado (no meu caso estava no meu diretório home):

unzip ngrok-stable-linux-amd64.zip

Depois localizei o executável "ngrok" e executei o seguinte:

sudo mv ngrok /usr/local/bin/

Depois de concluir estas etapas, consegui executar o ngrok http 8080 e obter os resultados esperados (abaixo está o exemplo dos documentos do ngrok sobre os quais estou falando)

Tunnel Status                 online
Version                       2.0/2.0
Web Interface                 http://127.0.0.1:4040
Forwarding                    http://92832de0.ngrok.io -> localhost:80
Forwarding                    https://92832de0.ngrok.io -> localhost:80

Connnections                  ttl     opn     rt1     rt5     p50     p90
                              0       0       0.00    0.00    0.00    0.00
    
por johnbrans 21.11.2017 / 04:19

Tags