Posts

How to install ngrok in wsl for activepieces

Image
 To install ngrok in your wsl system, go to your wsl and open the terminal. Step 1: Download the ngrok zip file Run the following commands: cd ~ wget https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-stable-linux-amd64.zip Step 2: Unzip the file sudo apt update sudo apt install unzip -y unzip ngrok-stable-linux-amd64.zip This will extract a file called ngrok . Step 3: Move ngrok to a system path sudo mv ngrok /usr/local/bin You can now run ngrok from anywhere in the terminal. Step 4: Connect your ngrok account If you don't have an account, sign up here: https://dashboard.ngrok.com/signup Then get your authtoken from: https://dashboard.ngrok.com/get-started/setup Copy the token and run: ngrok config add-authtoken YOUR_AUTHTOKEN_HERE Example: ngrok config add-authtoken 1h3JKiO9abcdXYZ1234EXAMPLE Step 5: Start ngrok use below command to start ngrok ngrok http 4200   Now localhost:4200 can be accessible in https://156858be73e9.ngrok-free.ap For accessing activepieces through ng...

How to connect to WSL from WinSCP

Image
 Hi, In this post, we will see how to connect to WSL from WinSCP  Install OpenSSH Server: Install openssh using command  Command 1: " sudo apt install openssh-server -y" After installation, confirm that the service is available: Command 2: "systemctl list-unit-files | grep ssh" If you see ssh.service , then it's installed correctly. Start and Enable SSH Service Try starting the SSH service: Command 3: " sudo service ssh start" Enable it to start on boot: Command 4: "sudo systemctl enable ssh" Check its status: Command 5: "sudo systemctl status ssh" If it's running, you're good to go. Open WSL and connect to WSL using like below screenshot. Hostname: localhost Username: your WSL username Password: your WSL password Hope it helps!. Thank you.

How to set new password in WSL

Image
 Hi, In this post, we will see how to set new password for wsl. Sometime, we may forgot our WSL password, in this post we will see how to set new password. Open your local machine terminal and run command "wsl -u root" to login as root After that, run command "passwd username" It will ask to enter new password and retype password.  Your password will be successfully updated. Hope it helps. Thank you.