Skip to main content

πŸ’Έ Step 9: Launch a Free Tier Instance AMD shape (Always Free)

Oracle offers a great Always Free tier that includes compute instances β€” perfect for small self-hosted projects like ours! 🎁

We’ll now create a VM using the free AMD shape, with just enough power to run our Nginx Proxy Manager.


🧱 Instance Specs:

  • Shape: VM.Standard.E2.1.Micro
  • CPU: 1 OCPU
  • RAM: 1 GB
  • πŸ’° Cost: $0 β€” Always Free eligible!


πŸ–₯️ How to Create the Free Tier Instance

  1. Go to Compute > Instances
  2. Click "Create Instance"
  3. Name your instance (e.g., debian-nginx)
  4. Under Image and shape:
    • Click "Edit"
    • Choose Custom Image (select your Debian image created earlier)
    • Click "Change Shape"
    • Filter by: "Virtual Machine" > "E2"
    • Select: βœ… VM.Standard.E2.1.Micro (Always Free eligible)

image.png


5. Configure networking and add your SSH public key πŸ”

6. Click "Create"


⏳ Wait a moment while the instance is provisioned. Once it's in the Running state β€” you're good to go!

πŸ”Œ Now you can connect to your instance using SSH:

πŸ“ Note: The default user might be debian


πŸ’» Optional: Connect Using PuTTY (Windows Users)

If you’re on Windows, the easiest way to connect to your new Debian instance is using PuTTY, a free SSH client.

But wait! πŸ›‘
Oracle gives you a private key in .pem format, and PuTTY needs a .ppk key.
So we’ll need to convert the key first.

πŸ” Step 1: Convert .pem to .ppk with PuTTYgen

  1. Open PuTTYgen (it comes with PuTTY)
  2. Click "Load" and select your .pem file (you may need to switch file type to All Files)
  3. Click "Save private key" – save it as my-key.ppk (you can skip the passphrase for now)

image.png

πŸ“‘ Step 2: Connect to Your Instance with PuTTY

  1. Open PuTTY
  2. In Host Name (or IP address), enter:

debian@your-instance-public-ip

  1. In the left panel, go to:
    Connection > SSH > Auth >Credentials
  2. Click "Browse" and select the .ppk file you saved earlier
  3. Click "Open" to connect

image.png


🟒 You should now see a terminal window connected to your Debian instance!
You’re officially inside your cloud server.