Buy Me a Coffee
Running n8n in Docker for AI Workflow

[n8n/Ollama] How to Run n8n in Docker for AI Workflow with Local Ollama Service (Windows Example)

Let’s get started with setting up an AI workflow using n8n in Docker on a Windows machine, featuring local service integration with Ollama. Whether you are familiar with n8n or starting from scratch, this guide walks you through the steps needed. Understanding the Basics n8n is a versatile, self-hosted automation tool designed to connect and automate the use of over 400 services, now including AI components. When integrated with various large language models (LLMs) such as OpenAI’s chat models, Google’s Gemini Chat Model, or Ollama, it extends its capabilities significantly. ...

Creating a Bootable Linux USB Drive

Creating a Bootable Linux USB Drive on Windows with Rufus

Creating a bootable USB drive for Linux using a Windows computer can be straightforward with the right tools. Rufus is a popular, free utility that simplifies the process. Here’s how you can use Rufus to prepare your USB drive for a Linux installation. Step-by-Step Guide to Using Rufus 1. Download Rufus Start by downloading Rufus from its official website: Rufus download page. Make sure to grab the latest version to ensure compatibility with new Linux distributions. ...

jellyfin-invalid-address-or-port-bind

[Jellyfin] Windows Tray Will Not Start Server

1. Issue Well, if you are using Jellyfin as your home media solution, you may confront the issue that the Windows tray cannot start server. There is no specific error message. Just simply doesn’t work. As a technical person, I always try to find the root cause of the issue. So I opened the Jellyfin server log file and found the error message like below. By the way, I installed the Jellyfin server on Windows with installer. ...

[Windows] Enable Windows default SSH server

This topic is already well documented by mircosoft docs. You can find it from Get started with OpenSSH. Here I just want to give two tips for accelerating the setup. There are two ways to activate the open ssh server on Windows: from Windows Settings or PowerShell. Personally, I would recommend to use the PowerShell. Open the PowerShell as an Administrator. Get-WindowsCapability -Online | Where-Object Name -like 'OpenSSH*' # Install server Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0 # Start the sshd service Start-Service sshd # OPTIONAL but recommended: Set-Service -Name sshd -StartupType 'Automatic' # Confirm the Firewall rule is configured. It should be created automatically by setup. Run the following to verify if (!(Get-NetFirewallRule -Name "OpenSSH-Server-In-TCP" -ErrorAction SilentlyContinue | Select-Object Name, Enabled)) { Write-Output "Firewall Rule 'OpenSSH-Server-In-TCP' does not exist, creating it..." New-NetFirewallRule -Name 'OpenSSH-Server-In-TCP' -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22 } else { Write-Output "Firewall rule 'OpenSSH-Server-In-TCP' has been created and exists." } When you try to connect the OpenSSH server, you’ll need to use ssh username@servername. The servername is your device’s IP address. For example, 192.168.1.5. The username may confuse you. But you can find it by typing whoami in PowerShell or Command. It may look like laptop-nbgksu9c\user. In the ~/.ssh/config file, you can configure it like ...

Windows Handbook (🚧Continuous Update)

1. Find the running process with <PORT> netstat -ano | findstr :<PORT> 2. Delete the running process with <PID> taskkill /PID <PID> /F # Or tasklist /FI "PID eq <PID>" 3. Find the running Named Pipe Open the powershell with the administrator permission and execute get-childitem \\.\pipe\ | grep "me.clic.ipc.v1"

DigitalOcean Referral Badge
Sign up to get $200, 60-day account credit !