ollama mtp

TL;DR MTP (Model Transfer Protocol) is an experimental feature in Ollama that enables direct model transfers between Ollama instances without re-downloading from the registry. Instead of each server pulling a 7GB model from ollama.com, one instance can push it directly to another over your local network. This matters for air-gapped environments, bandwidth-constrained deployments, and multi-node setups where you want consistent model versions across machines. ...

July 13, 2026 · 8 min · Local AI Ops

can ollama models access the internet

TL;DR No, Ollama models cannot access the internet directly. Models running through Ollama are completely offline and operate only on the data they were trained on plus whatever context you provide in your prompts. When you run ollama run llama3.2 or send requests to the API on port 11434, the model generates responses based purely on its training data and your conversation history – it has no mechanism to fetch live web content, query APIs, or retrieve current information. ...

June 22, 2026 · 9 min · Local AI Ops

How Finetuning Exposes Copyright Issues in Self-Hosted LLMs

TL;DR Finetuning your local LLM on copyrighted material creates the same legal risks as training foundation models, but with direct personal liability. When you run ollama create mymodel -f Modelfile using a dataset scraped from Stack Overflow, GitHub repositories, or published books, you become the party responsible for any copyright infringement – not a distant corporation with legal teams. ...

May 1, 2026 · 9 min · Local AI Ops

Running Local AI Models on Kubernetes with Ollama in 2026

TL;DR Deploying Ollama on Kubernetes transforms local AI inference into a production-grade service with horizontal scaling, persistent model storage, and service mesh integration. This guide covers container orchestration patterns specifically for LLM workloads running on self-hosted infrastructure. The core deployment uses StatefulSets rather than Deployments to maintain stable network identities and persistent volume claims for model storage. Each Ollama pod serves the REST API on port 11434 and requires GPU node affinity when using NVIDIA runtime. Configure OLLAMA_HOST=0.0.0.0:11434 to bind the service to all interfaces within the pod network, and set OLLAMA_MODELS=/models pointing to your PersistentVolume mount path. ...

April 25, 2026 · 8 min · Local AI Ops

LM Studio API Key Setup Guide for Local AI Models 2026

TL;DR LM Studio provides an OpenAI-compatible API server that runs entirely on your local machine, eliminating the need to send data to external services. The API key system in LM Studio serves as an authentication layer for applications connecting to your local inference server, preventing unauthorized access from other processes or network clients. ...

April 19, 2026 · 9 min · Local AI Ops

Turn Idle GPUs Into P2P AI Grid With Go Binary Tools

TL;DR This guide shows you how to build a peer-to-peer GPU sharing network using Go-based tools that let idle machines serve AI inference requests across your local network or homelab. Instead of leaving GPUs idle on workstations overnight, you can pool them into a distributed inference cluster that routes requests to available hardware. ...

April 15, 2026 · 9 min · Local AI Ops

Docker Pull Issues in Spain: Self-Hosting AI with Ollama

TL;DR Docker Hub rate limits and regional connectivity issues in Spain can block container pulls, disrupting self-hosted AI deployments. The primary workaround is switching to mirror registries or running Ollama natively without Docker. For immediate relief, configure Docker to use alternative registries. Edit /etc/docker/daemon.json to add registry mirrors: { "registry-mirrors": [ "https://mirror.gcr.io" ] } Restart Docker with sudo systemctl restart docker and retry your pull. This routes requests through Google’s mirror, bypassing Docker Hub entirely. ...

April 13, 2026 · 8 min · Local AI Ops

Running Ollama Serve: Complete Setup Guide for Local AI

TL;DR The ollama serve command launches the Ollama daemon that exposes a REST API on port 11434 for running local LLM inference. Unlike the simpler ollama run command for interactive chat, serve mode is designed for persistent server deployments where multiple applications need programmatic access to your models. After installing Ollama with curl -fsSL https://ollama.com/install.sh | sh, the service typically starts automatically via systemd on Linux. You can verify it’s running with systemctl status ollama or by checking if port 11434 responds to API requests. The daemon loads models on-demand when applications request them through the HTTP API. ...

April 6, 2026 · 9 min · Local AI Ops

Air-Gapped AI Deployment: Running Ollama Without Internet

TL;DR # On connected machine: download everything curl -fsSL https://ollama.com/install.sh -o ollama-install.sh ollama pull llama3.1:8b tar czf ollama-models.tar.gz -C /usr/share/ollama .ollama/ # Transfer to air-gapped machine via USB # On air-gapped machine: install and restore bash ollama-install.sh # works offline if binary is bundled tar xzf ollama-models.tar.gz -C /usr/share/ollama/ sudo systemctl start ollama ollama list # verify models are available The full process involves downloading the Ollama binary, pulling models, packaging everything, transferring via approved media, and restoring on the isolated system. This guide covers each step in detail. ...

April 6, 2026 · 8 min · Local AI Ops

Ollama Behind Nginx Reverse Proxy: SSL and Multi-User Setup

Ollama Behind Nginx Reverse Proxy: SSL and Multi-User Setup TL;DR # Install Nginx and Certbot sudo apt install nginx certbot python3-certbot-nginx # Get SSL certificate sudo certbot --nginx -d ollama.example.com # Test the proxy curl -s https://ollama.example.com/api/tags \ -u admin:password | jq . By default, Ollama listens on localhost:11434 with no authentication, no encryption, and no rate limiting. This is fine for single-user local development but inadequate for team use or any network-exposed deployment. Nginx solves all three problems as a reverse proxy layer in front of Ollama. ...

April 6, 2026 · 8 min · Local AI Ops
Buy Me A Coffee