How-toUpdated 2026-07-01 · 9 min read · by RTXsparks Lab

Serving Qwen3 7B with Ollama on RTX Spark

Production Ollama deployment of Qwen3 7B on RTX Spark. Configs, systemd, TLS, observability.

Install

Install Ollama via pip/docker/apt as appropriate. Verify GPU visibility with nvidia-smi.

  • # Ollama install
  • curl -fsSL https://ollama.com/install.sh | sh

Config

Optimized Ollama config for Qwen3 7B at Q5_K_M: batch, KV cache dtype, and parallelism knobs.

Systemd unit

[Unit] Description=Ollama for Qwen3 7B — [Service] ExecStart=/usr/bin/ollama serve qwen3-7b --port 8000 — Restart=always.

nginx + TLS

Terminate TLS at nginx with a Let's Encrypt cert, rate-limit at 20 req/s per IP, and proxy to the local Ollama port.

Observability

Scrape Ollama Prometheus metrics into Grafana; watch tokens_per_second, batch_size, and kv_cache_usage.

Frequently asked questions

Is Ollama the fastest for Qwen3 7B?

It's the easiest, not always the fastest.

Can I run multiple models with one instance?

Yes, it hot-swaps.

Related guides