Tutorials
E
Elementor
16 tutorials
A
AWS Lightsail
Beginner-friendly AWS Lightsail guides
12 tutorials
W
WordPress
12 tutorials
View all tutorials →
Tools
W
Website Platforms & Tools
Tools to build, host, and optimize fast, reliable, and professional websites.
8 tools
W
Web Hosting Providers
Fast, secure web hosting with reliable uptime to power and scale your website.
6 tools
V
VoIP / Communications
Business phone tools with virtual numbers, call routing, and auto-attendants for a professional pres
4 tools
W
Website Security
Security tools to protect your site from threats, malware, and unauthorized access.
2 tools
B
Branding & Logo Design
Create a strong brand identity with custom logo and professional design services.
1 tool
View all tools →

Create an SSH Tunnel on AWS Lightsail (Bitnami)

Gerry Manzari Written by Gerry Manzari · January 5, 2026 · 1 min read

Some services on AWS Lightsail (like phpMyAdmin) are only accessible from localhost for security reasons. To access them safely, you can create an SSH tunnel.

Step 1: Open a terminal

On Windows, use PowerShell.
On macOS/Linux, use Terminal.

Step 2: Run the SSH tunnel command

ssh -i "C:\Users\User\Downloads\name_of_pem_file.pem" -N -L 8888:127.0.0.1:80 bitnami@44.196.11.84

Note: You’ll need to download your default SSH key (.pem file) from your Amazon Lightsail instance before running this command. Check out my tutorial on how to download your PEM file in Amazon Lightsail.

Step 3: Access the service

Leave the terminal open and visit:

http://localhost:8888/phpmyadmin

Step 4: Close the tunnel

When finished, simply close the terminal window.