Frequently Asked Questions

This FAQ addresses the most common real-world issues that new Huntarr users face. These are based on actual support requests and community discussions.

💡 Quick Tip: Most issues are Docker-related or configuration problems. Start with the Installation & First Setup section if you're just getting started.

Table of Contents

Installation & First Setup

I'm completely new to Huntarr. What exactly does it do?
Huntarr automatically searches for missing content in your Sonarr, Radarr, Lidarr, Readarr, and Whisparr applications. Think of it as a "search assistant" that runs constantly to find missing episodes, movies, music, and books.
What it does: Finds missing content, upgrades quality, manages download queues
What it doesn't do: Replace your *arr apps, download content directly, or manage files
Prerequisites:
  • At least one *arr application (Sonarr, Radarr, etc.) already installed and working
  • Indexers configured in your *arr apps
  • Download client (qBittorrent, Deluge, etc.) configured
What's the easiest way to install Huntarr?
Docker is strongly recommended for all platforms. Here's the simplest setup:
docker run -d --name huntarr \
  --restart unless-stopped \
  -p 9705:9705 \
  -v /path/to/huntarr/config:/config \
  -e TZ=America/New_York \
  huntarr/huntarr:latest
Replace:
  • /path/to/huntarr/config with your actual path (e.g., /opt/huntarr)
  • America/New_York with your timezone
After installation:
  1. Open http://YOUR_IP:9705
  2. Create admin account
  3. Add your *arr applications in Settings
Windows Defender is blocking the installer - is this safe?
This is normal for open-source software that isn't Microsoft-signed. The installer is safe, but Windows shows warnings. To install on Windows:
  1. When Windows SmartScreen appears, click "More info"
  2. Click "Run anyway" at the bottom
  3. Allow through Windows Firewall when prompted
Alternative: Use Docker Desktop on Windows to avoid these security warnings entirely.
Can't access Huntarr at http://localhost:9705
Common causes and solutions:
  • Wrong IP: Try http://YOUR_SERVER_IP:9705 instead of localhost
  • Port conflict: Another app is using port 9705
  • Firewall: Port 9705 is blocked
  • Container not running: Check with docker ps | grep huntarr
Quick troubleshooting:
# Check if Huntarr is running
docker ps | grep huntarr

# Check the logs
docker logs huntarr

# Restart if needed
docker restart huntarr

Common Error Messages

"Failed to connect to API" or "Connection timeout"
This means Huntarr can't reach your *arr applications. Check these in order:
  1. URL format: Use http://IP:PORT (e.g., http://192.168.1.10:8989)
  2. Remove trailing slash: Don't use http://IP:PORT/
  3. Test manually: Can you access the *arr app in your browser?
  4. Network access: Can Huntarr's container reach your *arr apps?
Docker networking tip: If both Huntarr and your *arr apps are in Docker, they need to be on the same network or use host networking.
Quick test:
# Test from inside Huntarr container
docker exec -it huntarr wget -qO- http://YOUR_ARR_IP:PORT/api/v3/system/status
"Invalid API key" or "401 Unauthorized"
Your API key is wrong or missing. To get the correct API key:
  1. Open your *arr application (Sonarr, Radarr, etc.)
  2. Go to Settings → General
  3. Look for "API Key" section
  4. Copy the entire key (usually 32 characters)
  5. Paste it exactly into Huntarr settings
Note: Each *arr application has its own unique API key. Don't use the same key for different apps.
"Permission denied" or file/folder errors
This is usually a Docker volume permission issue. Fix permissions:
# Stop Huntarr
docker stop huntarr

# Fix ownership (replace with your actual path)
sudo chown -R 1000:1000 /path/to/huntarr/config

# Start Huntarr
docker start huntarr
Prevention: Create the config directory and set permissions before running Huntarr for the first time.
"No items found" or "Nothing to process"
This usually means your content is not marked as "Monitored" in your *arr apps. Check this:
  1. Open your *arr application
  2. Look at your movies/shows/music
  3. Ensure items are marked as "Monitored" (usually a toggle or checkbox)
  4. Check that you have missing content (red icons in *arr apps)
In Huntarr settings: Make sure "Monitored Only" is enabled if you only want to search for monitored content.

Docker Problems

Huntarr container keeps restarting or crashing
Check the logs first:
docker logs huntarr
Common causes:
  • Permission issues: Config directory not writable
  • Port conflict: Port 9705 already in use
  • Memory limits: Not enough RAM allocated
  • Corrupted config: Bad configuration files
Reset if needed:
# Stop and remove container
docker stop huntarr && docker rm huntarr

# Clear config (backup first!)
rm -rf /path/to/huntarr/config/*

# Recreate container
docker run -d --name huntarr ...
Can't reach *arr apps from Huntarr container
This is a Docker networking issue. Solution 1 - Use host networking:
docker run -d --name huntarr \
  --network host \
  --restart unless-stopped \
  -v /path/to/huntarr/config:/config \
  huntarr/huntarr:latest
Solution 2 - Use Docker bridge with correct IPs:
  • Find your host's Docker IP: ip route show default
  • Use that IP in Huntarr settings instead of localhost
  • Example: http://172.17.0.1:8989 instead of http://localhost:8989
Tip: Host networking is usually the easiest for beginners.
Docker-compose setup
Here's a complete docker-compose.yml example:
version: '3.8'
services:
  huntarr:
    image: huntarr/huntarr:latest
    container_name: huntarr
    restart: unless-stopped
    ports:
      - "9705:9705"
    volumes:
      - ./huntarr-config:/config
    environment:
      - TZ=America/New_York
      - PUID=1000
      - PGID=1000
Run with:
docker-compose up -d

Connection Issues

Settings won't save or keep resetting
This indicates a file permission problem. Fix it:
  1. Stop Huntarr: docker stop huntarr
  2. Check directory ownership: ls -la /path/to/huntarr/
  3. Fix permissions: sudo chown -R 1000:1000 /path/to/huntarr/
  4. Start Huntarr: docker start huntarr
Make sure: The config directory exists and is writable before starting Huntarr.
Web interface loads but settings pages are blank
Usually a browser caching issue or JavaScript error. Try these in order:
  1. Hard refresh: Ctrl+F5 (Windows) or Cmd+Shift+R (Mac)
  2. Clear browser cache for the Huntarr site
  3. Try incognito/private mode
  4. Try a different browser
  5. Check browser console for JavaScript errors (F12)
Common cause: Browser extensions or ad blockers interfering with the interface.

"It's Not Finding Anything"

Huntarr says it's running but not finding missing content
Checklist to verify:
  1. Content is monitored: Check your *arr apps - items must be marked "Monitored"
  2. Content is actually missing: Look for red indicators in your *arr apps
  3. Indexers are working: Test manual search in your *arr apps
  4. Download queue isn't full: Check your download client
  5. Huntarr settings: Verify hunt missing/upgrade limits aren't 0
Easy test: In your *arr app, manually search for a missing episode/movie. If that doesn't find anything, the problem isn't with Huntarr.
Check Huntarr's processing: Look at the dashboard counters - they should increase over time if content is being processed.
Why are the search counters not increasing?
Most common reasons:
  • No missing content: Everything is already downloaded
  • Content not monitored: Items aren't marked as monitored in *arr apps
  • Future releases: "Skip Future Episodes/Movies" is enabled and content isn't released yet
  • Download queue full: Queue size exceeds your minimum threshold
  • API limits reached: Hourly API cap is hit
Quick check:
  1. Go to your Sonarr/Radarr wanted pages
  2. Verify there are missing items shown
  3. Check if they're marked as "Monitored"
Searches are slow or timing out
Optimize your settings:
  • Increase sleep duration: Use 15+ minutes between cycles
  • Reduce batch sizes: Lower "Hunt Missing" and "Hunt Upgrades" numbers
  • Set API limits: Use reasonable hourly caps (20-50 per app)
  • Check indexers: Slow indexers can cause timeouts
Remember: Huntarr is designed to run continuously. It doesn't need to be aggressive - slow and steady is better for indexer health.

Performance & Speed

Huntarr is using too much CPU/memory
Reduce resource usage:
  • Increase sleep duration: 20-30 minutes between cycles
  • Lower batch sizes: Process fewer items per cycle
  • Set stricter API limits: Prevent overloading
  • Enable "Skip Future Items": Avoid unnecessary processing
Normal behavior: CPU usage spikes during processing cycles, then returns to low levels during sleep periods.
Getting rate-limited by indexers
Protect your indexers:
  1. Set hourly API caps: 20-50 requests per hour per app
  2. Increase sleep duration: 20+ minutes between cycles
  3. Lower batch sizes: 5-10 missing items, 2-5 upgrades per cycle
  4. Enable monitored-only: Don't search for unmonitored content
Important: Rate limits protect both you and the indexer community. Don't try to bypass them.

Locked Out / Security

Forgot my Huntarr password
Reset authentication:
# Stop Huntarr
docker stop huntarr

# Remove credentials file
                # Credentials are now stored in the database at /config/huntarr.db (Docker) or /path/to/huntarr/data/huntarr.db (local)
                # To reset credentials, delete the database file or use the web interface

# Start Huntarr
docker start huntarr
Now you can access the web interface and create a new admin account.
Note: This also resets any two-factor authentication settings.
2FA is not working or lost my device
Same solution as password reset - remove the credentials file:
# Credentials are now stored in the database at /config/huntarr.db (Docker) or /path/to/huntarr/data/huntarr.db (local)
# To reset credentials, delete the database file or use the web interface
This will reset both password and 2FA settings.
Should I expose Huntarr to the internet?
Generally not recommended unless you need remote access. If you must expose it:
  • Enable strong authentication
  • Use 2FA
  • Use a reverse proxy with SSL
  • Consider VPN access instead
Best practice: Keep Huntarr on your local network and use VPN for remote access.

Still Need Help?

Before asking for help, please:
  1. Check that your *arr apps work correctly on their own
  2. Verify you can manually search for content in your *arr apps
  3. Note the exact error messages you're seeing
  4. Check the Docker logs: docker logs huntarr

Discord Community

Get real-time help from the community and developers.

GitHub Issues

Report bugs or request features on GitHub.

Reddit Community

Discuss with other users and share experiences.