How to install Ngrok on Ubuntu Linux 18.04 desktop machine?

How to install Ngrok on Ubuntu Linux 18.04 desktop machine?

    Ngrok allows you to expose a HTTP server running on your local machine to the internet. You can signup at https://dashboard.ngrok.com/signup to create your own Ngrok account and get auth token to make an HTTP/TCP tunnels on random URLs and ports. Please use the below commands to create HTTP/TCP tunnel to expose local HTTP server to the internet. When you start Ngrok, it will display a UI in your terminal with the public URL of your tunnel and other information about connections.

# Download Ngrok.
$ wget https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-amd64.tgz -P /tmp

# Extract Ngrok from archive.
$ tar xvzf /tmp/ngrok-v3-stable-linux-amd64.tgz -C /tmp

# Install Ngrok.
$ sudo mv /tmp/ngrok /usr/local/bin

# Check Ngrok version.
$ ngrok --version


    • Related Articles

    • How to install VirtualBox on Ubuntu Linux 18.04 desktop machine?

      If you have a host machine that runs Ubuntu Linux operating system, then you need to install VirtualBox to build and run virtual machines. Now, let's see how to do VirtualBox installation on Linux host machine. # Install required system packages. $ ...
    • How to install Vagrant on Ubuntu Linux 18.04 desktop machine?

      If you have a host machine that runs Ubuntu Linux operating system, then you need to install Vagrant to automate and manage virtual machines. Now, let's see how to do Vagrant installation on Linux host machine. # Download Vagrant. $ wget ...
    • How to install Docker on Ubuntu Linux 18.04 desktop machine?

      Docker is available in two editions: Community Edition (CE) and Enterprise Edition (EE). Here, we'll proceed with Docker CE, the Community Edition. To do a clean installation, you must first remove existing Docker installation, if anything found. And ...
    • How to install Git on Ubuntu Linux 18.04 desktop machine?

      Here, we install Git using system package manager. This is most recommended way of installing Git on Ubuntu Linux operating system. No matter how we install Git, its just a command line utility. Once the installation is done, you need to verify Git ...
    • How to install Terraform on Ubuntu Linux 18.04 desktop machine?

      Let's install Terraform by downloading and extracting the executable binary for Linux. This is most recommended way of installing Terraform on any Linux-based operating system. No matter how we install Terraform, its just a executable binary. Once ...