Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install Ngrok 2.0 on linux subsystem on Windows 10

I am trying to use Ngrok to create an introspected tunnel to localhost webhook development tool on my Linux subsystem (Powershell --> bash)

I try to install ngrok using the following:

sudo apt install ngrok-client

From what I understand the sudo command used installs ngrok v 1.6. When I attempt to execute ngrok 80 I get an error:

Invalid address server_addr 'ngrokd.ngrok.com:443'

I searched for this in another post and was informed that ngrok v. 1.6 is obsolete and in order to continue using ngrok would be to upgrade to 2.0

Testing PayPal with Rails

It's advised to download from the website http://ngrok.com, which is simple enough, but what is the correct way to download for linux subsystem use? Should I download for Linux and unzip? Or am I suppose to download for Windows?

Let me know if I'm misunderstanding anything

like image 523
RacketyGnome300 Avatar asked Oct 29 '17 22:10

RacketyGnome300


1 Answers

I use ubuntu since years, I trust the online instructions so either do:

sudo apt-get update
sudo apt-get install ngrok-client

or try to use this instruction and let me know if you have problems

the same instructions are included hear

$ unzip /path/to/ngrok.zip

$ is just the sign from your terminal. You do not need to input $, but you need to open the terminal (ctrl+alt+t), run the unzip command to unzip the folder. You will find the folder under your downloads. So / is the root of your machine. You need to go inside your home folder which will be /home so you do cd (change directory) followed by that path

cd /home

then you do ls to list all the directories. You should see your profile with your name username. You should be able to get in the download folder with cd <username>/Downloads where <username> should be replaced with your personal folder name

At this point you are inside the Downloads directory. You can do an ls in your terminal, find the name of the file you downloaded (should be something like ngrok-stable-linux-amd64.zip) and run

unzip <file-name.zip>

where file name is the file you downloaded (something like ngrok-stable-linux-amd64.zip) or you can go back to the root directory and run

cd /
unzip /home/<username>/Downloads/<yourfile.zip>

Read the documentation on how to use ngrok. Try it out by running it from the command line:

./ngrok help

Also I read from the documentation, that you can set up that address

There is some discussion online about this

Testing PayPal with Rails

I can help you more but I need your feedback

like image 193
Fabrizio Bertoglio Avatar answered Nov 01 '22 10:11

Fabrizio Bertoglio