Self-Hosting My Own LLMs A user decided to self-host large language models in 2026 to maintain data sovereignty, privacy, and control over their conversations, using open-source tools and local hardware. The setup, built around an AMD Ryzen 9 5900X with 80 GB of DDR4, aims to avoid reliance on closed-source providers like OpenAI and Anthropic. Originally published 2026-07-05. At the beginning of 2026 I decided I wanted to self-host all the software that would give me a "ChatGPT"-like experience, but fully under my own control and ownership. I had a few reasons. Some were the usual ones — privacy and total ownership of my own data. Some were pure curiosity: LLMs seemed like something approaching black magic, and I wanted to look behind the curtain. And some were about self-sufficiency — what happens if OpenAI or Anthropic decide to start being less generous with their technology? This post explains the tools I eventually settled on, and how I configured them in a way that suited my needs. The Big Why At a time when ChatGPT, Claude, Gemini and plenty of others are being handed to users for free, why go to the time and expense of recreating something that’s admittedly inferior? I’ll go through a few reasons, but the main one comes down to data sovereignty. I wanted full ownership and control over my own data. Full stop. I know I’m an outlier here. But it’s the same reason I still pay — in 2026, even — for an email service instead of relying on Gmail. Throughout 2025 I found myself having more and more conversations across ChatGPT, Claude and other services, and I realized those conversations were deeply personal and valuable to me, even when I wasn’t chatting about anything especially private. I wanted to be able to look back and easily find a conversation I’d had months or eventually years earlier. I know ChatGPT, Claude and Gemini all offer that kind of history — but I’d grown uncomfortable with the idea that I was building up a library of my own conversations inside someone else’s walled garden. Technically, they own that data, and therefore my conversations. I felt very little agency over something that felt like it should be entirely mine. So it was settled: I would use open-source tools to host my own chat interface — and if at all possible, power it with large language models running on my own machine. There were other reasons, too. I like tinkering, and I wanted to see how the LLM sausage gets made. Chatting with ChatGPT online felt mysterious and hard for me to fathom — how did this new technology actually work? There’s no better way to learn than to set it up locally and watch all the moving parts. Lastly, there’s the self-sufficiency angle. We’ve already seen powerful closed-source models kept behind tightening restrictions and steep prices — Anthropic’s Mythos and Fable, OpenAI’s GPT-5.6. And even when the models aren’t formally restricted, plenty of people swear up and down that the big providers quietly throttle them at busy times. Whether that’s actually true is more or less unknowable — but there’s an antidote either way: use open-weights models that aren’t so directly under any one company’s control. A local model, running on my own hardware, is something that neither the government nor big business can so easily restrict or take away. The Cost Before I begin, I should give some context about the sort of hardware I have. It’s 2026, and hardware — memory especially — is suddenly expensive, because we’re in the thick of a generative-AI bubble. People are paying scalper’s prices for the hardware that lets you run models locally. Pretending this is all doable without dropping a modest amount of money would be disingenuous. So what am I running, and what did it cost? I’m running what most people would call an enthusiast’s setup: some decent hardware, but nowhere close to a high-end build. I started this with a custom AMD desktop I built right before COVID, paired with a video card I picked up last year. In 2026 it’s not remotely cutting edge, and that’s fine. I built it around AMD’s Ryzen 9 5900X — a 12-core beast at the time — and loaded it up with about 80 GB of DDR4. I really wish I’d bought more memory back when it was cheap a couple of years ago, but so does everyone else. Even so, this is a very solid if not cutting-edge machine. Last summer I walked into Micro Center and walked out with a refurbished NVIDIA RTX 3090 Ti for $850 plus tax. I remember wondering at the time whether it was a dumb purchase. I’m now sleeping very easy with that acquisition — it turned out to be a great buy. The 3090 Ti and its 24 GB of VRAM do the majority of the heavy lifting in my system, and that 24 GB is the single most important number in this whole story: it decides which models fit, and shapes nearly every configuration choice I make later on. Luckily I’d already put a largish 850-watt power supply in the machine, so I didn’t need to upgrade that either. So how much would this setup cost to assemble today? This got me curious about my original build cost. Back in Chicago I actually lived within walking distance to a Micro Center, a deeply expensive convenience for me. I did my whole build using Micro Center, and I thought it would be fun to pull up my original receipts…mostly just to cry at the prices. | Component | Date | Price pre-tax | |---|---|---| Samsung 950 Pro 256GB M.2 drive | Feb 2017 | $148 | G.Skill 2x8GB DDR4-3200 starter memory | Aug 2020 | $58 | Seasonic GX-850 850W Gold power supply | Aug 2020 | $160 | ASUS X570-Pro Prime AM4 motherboard | Sep 2020 | $180 | Samsung 970 Evo 1TB M.2 drive | Nov 2020 | $104 | Crucial Ballistix 2x32GB DDR4-3200 | Dec 2020 | $265 | Thermaltake Core P3 case | Mar 2021 | $160 | Ryzen 9 5900X | May 2021 | $550 | Noctua NH-D15 CPU cooler | Jul 2021 | $92 | Nvidia 3090 Ti refurbished | Sep 2025 | $850 | Total | $2,567 | I originally built the computer with a Ryzen 5 3900X in it, but I upgraded later, so I’m only listing components in the final build. Most of the machine came together in mid 2020. In Sept 2020 I bought an AMD RX 5500 XT that had 8GB of ram for $200 also refurbished at Micro Center . At the time, crypto mining was placing an enormous demand on cards, especially Nvidia ones. I wasn’t yet ready to pay blockbuster prices for a super in-demand card, which is how I settled on the RX 5500 XT. Now that I reflect back on the prices I paid, I’m actually a little surprised to see that I dropped $265 on two 32GB sticks of RAM. That’s more than I could buy it for today I think, which puts the current memory bubble into perspective a little. Even though we’re in the midst of global memory shortage and memory of all kinds current, last generation have spiked since a year or two ago, my anecdotal prices are still cheaper than they were in 2020. Interesting. Basic Architecture We’ll get into the details on each component below, but first let’s zoom out so we don’t miss the forest for the trees. Here’s the whole stack on one page: Desktop home ─┐ ├──▶ Open WebUI Phone away ───┘ │ via Tailscale ▼ llama-swap │ ▼ llama.cpp │ ▼ model Everything from Open WebUI rightward is self-hosted on hardware I own; only the phone’s traffic takes the Tailscale detour to get in. As we’ll see, Open WebUI and the inference server don’t even have to live on the same machine. My AMD desktop runs Linux. Which distribution probably doesn’t matter much — I’m on a Debian variant at the moment, though I might redo the whole setup on Fedora one of these days like I said, I like to tinker . This guide assumes a Linux environment. A quick note on the GPU: I actually got things running first on a small 8 GB AMD Radeon card I already had, before the NVIDIA. It’s certainly possible to use a GPU from someone other than NVIDIA, but I struggled a bit getting the AMD card working — non-NVIDIA cards are still something of a second-class citizen in the local-LLM world. What tripped me up more, though, was that card’s meager 8 GB of VRAM, which is ultimately what pushed me to jump to the 3090 Ti. So what does the stack actually need? Besides the open-weights models themselves, you need something to perform inference — the act of taking incoming text my chat prompts and running it through the model to produce a text response. There are several options here, and I landed on llama.cpp. It’s not as hardcore as vLLM, but it’s a little more "enterprise" than something like Ollama or LM Studio. By design, though, llama.cpp doesn’t hand you a nice web interface for actually chatting with the model. For that you need a chat front-end. There are many LibreChat, Oobabooga and SillyTavern all came up while I was looking , but I settled on Open WebUI. A big reason was that I could reach my Open WebUI server from my phone — an important detail for me. I wanted the whole setup to be usable from both my desktop and my phone while I’m on the go, and at the time Open WebUI had the most viable options for use on my iPhone. Incidentally, I ended up using an iOS app called "Conduit" to reach my Open WebUI server from the phone — though the app ecosystem is always shifting. With Open WebUI out front and llama.cpp doing the inference, I was nearly in business. My remaining problem was picking which open-weights model to run — there were actually several intriguing candidates, and I wanted to switch between them easily. Trouble is, changing models would normally mean restarting llama.cpp, and that’s not something I can do from my phone. That’s where llama-swap comes in. It acts like a little local router that sits between Open WebUI and my llama.cpp inference server, and it lets me expose a handful of different models at once. I pick a model from inside the Open WebUI chat window and just start talking; llama-swap works with llama.cpp to spin up inference on the right model automatically. No stopping and starting services from the command line. It just works. Lastly, there’s the small matter of reaching all this while I’m out and about. To keep things simple, I took the plunge with Tailscale, which lets you build a personal mesh VPN. I run Tailscale on both my home server and my phone, so when I’m away from home I just make sure I’m connected to my Tailscale network my "tailnet" and the Conduit app on my phone can reach my Open WebUI server as if I were sitting at home. To Docker or Not to Docker I started out by following a few online guides for installing llama.cpp on Linux, and I initially decided to run everything from pre-built Docker containers — it seemed like the cleaner solution, easier to isolate and configure. At first I had separate containers for Open WebUI and llama-swap whose image also bundled the llama.cpp llama-server binary , and I later added a third for Redis. Over time, though, I drifted away from containers. The main reason was that I needed to stop using the pre-built images and start running my own custom binaries. For a while I baked those custom binaries into a custom Docker image, but eventually that started to feel like too much work. The Open WebUI container was the first to go — though it didn’t disappear so much as move. I have a second machine in the house, some sort of Dell OptiPlex, that I use as a souped-up NAS running FreeBSD. It’s a rock-solid server, unlike my AMD desktop, which was constantly crashing while I figured out how to safely load these enormous models onto the 3090 Ti. The 3090 Ti had to stay in the desktop — which dictated where llama.cpp would run — but Open WebUI could technically live anywhere. So I moved it into a jail on the FreeBSD box for the sake of stability. That move quietly solved a problem I’d been papering over. Back during all the crashing and rebooting, every restart of the Open WebUI service logged my clients out and forced them to re-authenticate immediately — which got old fast. Redis was my fix: it let logins persist across service restarts. But once Open WebUI lived on the rock-solid FreeBSD box, it hardly ever restarted. My inference machine still hiccups and goes down now and then, but that no longer takes Open WebUI down with it. So I just… forgot about Redis. I never installed it on the FreeBSD box, and it drifted out of the picture entirely. That left just one container with llama.cpp and llama-swap in it. For llama.cpp, I kept finding myself wanting the absolute latest version. When Google released the Gemma 4 models, I downloaded one right away and tried to use it — and got errors, because my version of llama.cpp didn’t fully recognize the new model. The fix was to run a newer llama.cpp, but as long as I was using someone’s pre-built Docker image I was at the update mercy of whoever built it. I wanted to be able to pull the latest llama.cpp source, build it myself, and run that. You can do that with Docker, of course — but at some point I decided it was simpler to stop using Docker and just run the binaries directly on Linux. I also wanted to run a slightly modified build of llama-swap more on that later , and once I was building my own llama-swap binary anyway, wrapping it in a container felt like a pointless extra step. So today none of this stack runs in Docker. It’s a little simpler for me to manage. Was Docker bad, or slow? Not at all — this really just comes down to preference. Inference engine: llama.cpp There are several options for serving up the raw language-model files. If you want a GUI and a gentler experience, LM Studio has been around for years and is a great option. But I wanted something that ran from the command line as a service or daemon. Ollama fits that bill, but I kept seeing it described as "llama.cpp with training wheels" — and in that case, I figured, why not just use llama.cpp itself? I also briefly checked out vLLM, but my particular use case — where I’m the sole user of my local stack — didn’t really play to its strengths vLLM shines when you’re serving lots of concurrent users . llama.cpp turned out to be the sweet spot: a robust headless inference server, with "prosumer" touches like being able to offload layers of a too-big model onto the CPU — at the cost of speed — when VRAM gets tight. Like I said earlier, I started out running whatever version of llama.cpp happened to ship inside my pre-built llama-swap container. But I wanted to track the very latest release: pull it from GitHub, build it, and run that. That’s ultimately what drove me off Docker and onto binaries installed directly on my Linux system. The build itself is refreshingly simple. After cloning the repo once, keeping it current and reinstalling looks something like this: cd llama.cpp git pull mkdir -p build && cd build cmake .. -DGGML CUDA=ON make -j4 had to lower this on my machine to avoid a segfault that was likely caused by nvcc running out of RAM sudo make install The -DGGML CUDA=ON flag is what builds in NVIDIA CUDA support. The final sudo make install drops the freshly built llama-server into /usr/local/bin , where the rest of my setup expects to find it. Going native did give me some heartburn the one time I also tried to run llama.cpp on my AMD card. An AMD card needs llama.cpp built against AMD’s ROCm stack rather than NVIDIA’s CUDA, so I suddenly had two different builds to juggle — one CUDA-compatible, one ROCm-compatible. I managed it by renaming binaries, which worked but felt gross; this is exactly the kind of situation where a Docker container would have been the cleaner approach. In the end, though, I just let the AMD card quietly fade out of my setup. It was only an 8 GB card, after all. llama-swap If I’d wanted to just pick one model and stick with it, my life would have been a little simpler. Instead, I wanted to start a chat with one model and then, in the very next session, switch to a different local model. That requires restarting llama.cpp pointed at the new model each time . Rather than do that by hand, there’s a way to have software restart llama.cpp on my behalf: llama-swap. llama-swap is a proxy that sits in front of llama.cpp. Requests hit llama-swap first, and it looks at which model was requested. If llama.cpp is already running that model, llama-swap just passes the messages along and llama.cpp infers away. But if the request is for a different model, llama-swap does the dirty work: it stops llama.cpp and restarts it with the newly requested model. There’s a 10–15 second wait while llama.cpp reloads, but after that it’s back to inferring away. llama-swap looks like pretty simple software, so why did I want to run a custom version of it? My problem was that, early on, llama.cpp was often crashing on me — usually because I’d given it incorrect model settings. Unfortunately, when llama.cpp crashed, llama-swap would essentially swallow the error, and I’d never see anything useful in my chat window. So I wrote a small patch to fix exactly that. It took a little fiddling, but I eventually got it working. At first I was going to post a diff of my patch, but while preparing it for this post I noticed that the patch no longer works for the latest version of llama-swap. I’m in the process of trying to get a revised patch merged into the llama-swap project itself, so fussing over this may soon no longer be needed. Here is the basic idea behind the patch: llama-swap already captures the upstream process’s output both stdout and stderr into a log buffer. My change hooks the point where llama-swap gives up on a model that exited before it ever became ready: instead of returning a generic "the process exited" message, it pulls that captured output and folds it into the error it hands back. So the client sees the model’s actual complaint — a rejected flag, an out-of-memory abort, whatever it was — rather than a shrug. The one wrinkle is that the log buffer accumulates across attempts, so I also clear it at the start of each launch; a repeated failure then shows only the latest attempt’s output instead of stacking duplicate copies. For llama-swap to know which models it can offer up, it needs a configuration file. That file is essentially a collection of llama-server startup commands — one for each model you want to make available. Want to run a model with a 128k-token context instead of 64k? Configure that here. Want to run a model half on the GPU and half on the system CPU? That goes here too. Basically any setting that controls how llama.cpp gets launched lives in the llama-swap config file. So what does mine look like? This isn’t the whole thing, but it’ll give you the idea. And no, I don’t really know whether these settings are truly optimal — I’ve just tinkered with them until each model runs okay on my machine. llama-swap configuration listen: "0.0.0.0:9292" healthCheckTimeout: 120 logToStdout: "both" sendLoadingState: true models: qwen3.6-35b-IQ4: cmd: llama-server --model /ryzenstore/models/Qwen3.6-35B-A3B-UD-IQ4 XS.gguf --port ${PORT} --host 0.0.0.0 --n-gpu-layers 99 --flash-attn on --ctx-size 262144 --cache-type-k q4 0 --cache-type-v q4 0 --batch-size 512 --ubatch-size 512 --threads 8 --no-mmap qwen3.6-27b-Q5: cmd: llama-server --model /ryzenstore/models/Qwen3.6-27B-Q5 K M.gguf --threads-batch 8 --port ${PORT} --host 0.0.0.0 --ctx-size 262144 --spec-type draft-mtp --spec-draft-n-max 2 -ngl 99 -fa on -ctk q8 0 -ctv q8 0 -nkvo gemma-4-31b-Q4: cmd: llama-server --model /ryzenstore/models/gemma-4-31B-it-Q4 K M.gguf --port ${PORT} --host 0.0.0.0 --n-gpu-layers 99 --flash-attn on --reasoning off --batch-size 512 --ctx-size 128000 --cache-type-k q4 0 --cache-type-v q4 0 You’ll notice each command uses ${PORT} rather than a hard-coded port number. llama-swap fills that in when it launches the model, so it stays in control of the wiring between itself and llama.cpp. The chat front-end: Open WebUI Everything up to this point has been plumbing. Open WebUI is the part I actually look at — the ChatGPT-style chat window in my browser and on my phone. As I mentioned earlier, it’s the one piece of the stack that doesn’t run on my AMD desktop; it lives over on the FreeBSD NAS instead. There’s a small irony here. Open WebUI is really designed to be run as a Docker container — that’s the blessed, easy path. And I run it about as far from that path as you can get: natively, inside a FreeBSD jail, on top of an emulated Linux. It was more work, but it fits how I wanted the rest of the house organized, and it’s been rock solid. The jail itself is a plain FreeBSD 13.5 jail, created with iocage. The one non-obvious wrinkle is that Open WebUI can’t run on FreeBSD directly, so the jail has FreeBSD’s Linux compatibility turned on — which is what all the linprocfs and linsysfs permissions here are for: iocage create -n openwebui -r 13.5-RELEASE \ ip4 addr="em0|openwebui-ip/24" \ defaultrouter="gateway-ip" \ boot=on \ enforce statfs=1 \ allow mount=1 \ allow mount linprocfs=1 \ allow mount linsysfs=1 \ allow raw sockets=1 Getting Open WebUI running inside the jail was the fussiest part of this whole project. My first instinct was to install it on FreeBSD’s own Python — and that went badly. Every time I ran pip install open-webui it would grind for a while and then die on some missing build dependency, so I’d install that piece — Rust, then cmake, then OpenSSL, then libffi, then a Postgres client library — rerun pip, and hit the next one. After a couple of hours of whack-a-mole I gave up on the native path entirely. The fix was to stop fighting FreeBSD and lean on its Linux compatibility instead. I installed a Rocky Linux 9 base linux base-rl9 and mounted the Linux proc and sys filesystems that Linux programs expect to find. Then, rather than build a Python myself, I downloaded a prebuilt standalone Linux build of CPython 3.11 from the python-build-standalone https://github.com/astral-sh/python-build-standalone project and unpacked it into /opt/python . Pointed at pip install open-webui — where ready-made Linux wheels actually exist — that Linux Python installed it cleanly. The whole saga is exactly the kind of thing the official Docker image exists to spare you, which is a little ironic given that leaving Docker behind is what put me here in the first place. One gotcha worth passing along: those Linux proc / sys mounts have to survive a jail restart, or the Linux Python quietly stops working the next time the machine reboots. I made them permanent by adding the mount to the jail’s fstab from the host: iocage fstab -a openwebui "linprocfs /compat/linux/proc linprocfs rw 0 0" To keep it running, I wrote a small rc.d service so the jail starts Open WebUI on boot. Under the hood it just runs open-webui serve on port 8080, wrapped in FreeBSD’s daemon for a pidfile and a log. One environment variable in there is worth calling out: AIOHTTP CLIENT TIMEOUT=600 That’s a ten-minute client timeout. With a hosted service, responses come back fast; with a big model running on a single 3090 Ti, a long answer can genuinely take minutes, and the default timeout would hang up on the model mid-sentence. Bumping it to 600 seconds fixed that. The first thing to do once you can reach Open WebUI in a browser is to point it at the models. Open WebUI talks to inference backends through an OpenAI-compatible API, so in its admin settings I set up a Connection to my local inference server at . That’s llama-swap over on the ryzen desktop — from Open WebUI’s point of view it’s just another OpenAI-compatible endpoint, and behind that address llama-swap and llama.cpp do all the swapping and inferring we set up earlier. http://inference-server-ip:9292/v1 http://inference-server-ip:9292/v1 Web search One thing I really wanted was for my local models to be able to search the web, the way the hosted assistants do. Open WebUI supports this out of the box if you give it a search backend, and the self-hosted option is SearXNG — a metasearch engine that queries the big search engines on your behalf and hands back the results, without the tracking. SearXNG got its own jail, also on the FreeBSD box, right next to Open WebUI. Unlike the Open WebUI jail, this one is completely stock — SearXNG is pure Python and runs on FreeBSD natively, so there’s no Linux layer and none of the extra permissions: iocage create -n searxng -r 13.5-RELEASE \ ip4 addr="em0|searxng-ip/24" \ boot=on Installing SearXNG inside the jail was refreshingly boring — especially next to the Open WebUI saga. Because it’s plain Python with no exotic dependencies, it’s available as a native FreeBSD package, so the whole install came down to pkg install py311-searxng-devel and enabling its service. No Linux base, no standalone Python, no wheels compiled from source. Implement this: setting up SearXNG in the jail inside the jail iocage console searxng pkg install -y py311-searxng-devel generate a secret key to paste into the config openssl rand -hex 32 edit /usr/local/etc/searxng.yml: - set server.secret key to the value above - add "json" to search.formats see below so Open WebUI can read results vi /usr/local/etc/searxng.yml enable and start the service it listens on port 8888 sysrc searxng enable=YES service searxng start sockstat -l4 | grep 8888 confirm it's listening The one setting that isn’t optional: by default SearXNG only returns HTML, but Open WebUI needs JSON back, so search.formats in searxng.yml has to include it: search: formats: - html - json Then, in Open WebUI’s admin settings, I pointed web search at that jail: http://searxng-ip:8888/search?q=