在 ubuntu 12.04 中安装 ngrok

Arv*_*ind 5 32-bit 12.04

在 ubuntu 中安装 ngrok 时遇到问题,我去了https://ngrok.com/download并为 ubuntu 下载它,但它总是提供不允许我们在 ubuntu 中运行的二进制文件,任何人都可以建议任何其他方式安装它。

A.B*_*.B. 6

要安装 32 位版本:

wget https://dl.ngrok.com/ngrok_2.0.19_linux_386.zip
unzip ngrok_2.0.19_linux_386.zip
Run Code Online (Sandbox Code Playgroud)

在那之后

./ngrok

你会看到这个,在我的 32 位系统上测试过。

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 - <alan@ngrok.com>

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
Run Code Online (Sandbox Code Playgroud)