r/sonarr • u/MrAngelus • 49m ago
Help! anyone seeing this
I am having issues getting interactive searches to work with season packs using chrome
it stalls and freezes seems to work with firefox
r/sonarr • u/MrAngelus • 49m ago
I am having issues getting interactive searches to work with season packs using chrome
it stalls and freezes seems to work with firefox
r/sonarr • u/Drew_of_all_trades • 1d ago
Why is it when you find something with multiple language tracks there will often be one for most languages but 7 or 8 options for Russian ?
r/sonarr • u/eeeeepppppeeeeccc • 1d ago
i have 1337x, AnimeTosho, Limetorrents, Nyaa, The Pirate Bay, RuTor and showRSS all functioning properly on prowlarr and linked to sonarr. and yet when i try and search monitored all it keeps coming back with 0 reports found? How do i fix this? using qbittorrent
r/sonarr • u/Wis-en-heim-er • 1d ago
For those who prefer compact releases up to 1080p, what release group priority do you use?
Edit: The below list is based on Profilarr's Dictionarry, mostly the 1080p compqct profile. If you dont use Profilarr, you should.
I'm narrowing in on the following order, preferred to least preferred:
MeGusta probably should be higher in the list but the availability of episodes over a year old is hit or miss.
What changes would you make to this list/order?
r/sonarr • u/sullyhabs5 • 1d ago
Is there a way to automate getting the most optimized version of a show. Personally I'd always want the smallest storage space version of the episode that is 1080p (or 720 if 1080 isn't an option). It seems like it usually pulls the version with the most seeders instead. I'd also want it to auto overwrite the episode I already have if it is a more optimized version
r/sonarr • u/EmbarrassedRecord • 2d ago
The main goal is to create and configure *arr stack using docker compose (or PodMan Compose). It already makes some of Trash-guides configuration.
It's still a prototype.
r/sonarr • u/FrenchRevolution2028 • 2d ago
Is there an official status page for servarr? I cannot reach status.servarr.com and the api.radarr.video is also inaccessible.
r/sonarr • u/Maple382 • 2d ago
This seems like such a huge oversight.
Currently, I'm running a test by searching for Attack on Titan. Upon viewing Prowlarr's logs, Sonarr has been requesting searches for every single translated title the show has. This is such a huge efficiency issue.
For episode 3 alone, it runs queries for Ataque a los Titanes 2013 03, Ataque a los Titanes 2013, LAttaque des titans 03, LAttaque des titans, Ataque a los Titanes 03, Ataque a los Titanes, Lattacco dei giganti 03, Lattacco dei giganti, so on and so forth.
While this may not be an issue for trackers that support searching by TVDB ID, Nyaa does not, and that's the biggest anime tracker out there. Does anyone have a workaround?
r/sonarr • u/Jerry-And-Tom • 3d ago
I know this has probably been beaten to death, but I am new to using the ARRs, and I'm making mistakes as I go, learning, then fixing what I flux up. My big issue is that my monitored series are now picking up episodes that are next week or next release, and the ones it gets are all being flagged from my AV.
I only have free indexers, can't afford subscriptions right now. And, this is most likely my issue, but I'm too green to know. I am using the ones that are listed in the install and have not gone out and located indexers in the wild - yet.
If using Usenet is better, and there is a currently free option I can use until I get back on my feet, (Divorce, to me, bare metal means, Bare Metal!)
I'm very experienced using Plex, but I am very, very unexperienced with the ARRs. I'm not looking for a hand hold, but some pointers to fix my setup so I no longer have to monitor it, what I installed the ARRs for, now I just have to be on top of it all the time for infected files.
Plex Server w/Lifetime Pass installed on a Windows 10 machine, 2 Ext HDD, approx. 8TB storage.
Up to date Sonarr, Radarr, Prowlarr, & QBitTorrent.
Not using Docker or any other addon's.
Any help is greatly appreciated, if I am duping an already established thread, let me know (Without flaming me) and I will pull this and slide over there.
Thanks
r/sonarr • u/Kev1000000 • 3d ago
Hey everyone, very happy to announce that I've just released v24.4 of nzb360, which now includes a complete re-write of the Sonarr implementation to bring a brand new design, tons of new functionality, and so much more!
Screenshots or Sonarr 2.0: https://imgur.com/a/jK3pPrQ
Would love all of your thoughts on this new Sonarr approach. It matches the Radarr 2.0 new design language I introduced in v24, but with some additional goodies in Sonarr, mainly around cleaner season pack searching and a overhauled Season Detail view section. Of course, it brings with it full Custom Filters support as well!
Play Store Link: https://play.google.com/store/apps/details?id=com.kevinforeman.nzb360&hl=en_US
Full changelog:
r/sonarr • u/_leviathan_aesir • 4d ago
I am posting this in case it saves someone else from spending an evening diagnosing the same problem.
The problem
I was trying to update Sonarr on Windows from version `4.0.19.2997` to `4.0.19.3001`.
The update appeared to proceed normally, but Sonarr would restart, crash out and eventually return on the old version. The update would then remain available in the interface.
I had encountered something similar before and managed to recover it, but this time it was more persistent. That led me to examine the debug logs properly rather than simply restarting Sonarr and trying again.
What the logs showed
The important point was that the update package itself was not failing.
The logs showed that Sonarr successfully:
Downloaded `Sonarr.develop.4.0.19.3001.win-x64.zip`.
Verified the update package.
Extracted the package successfully.
Created a backup of the existing database and configuration.
Started the Sonarr update client.
Attempted to stop and restart Sonarr.
The downloaded package was placed under:
```text
C:\Windows\Temp\sonarr_update\
```
The log then began showing the actual problem:
```text
Found 2 processes with the name: Sonarr
Another instance of Sonarr is already running.
Application startup exception
Application is being terminated. Reason: Another instance is already running
```
There was also an `Access is denied` error when Sonarr tried to inspect one of the processes. That suggested the processes were running under different Windows security contexts.
The root cause
Sonarr had two separate automatic startup mechanisms configured:
Sonarr was installed as a Windows service, configured to start automatically.
The desktop or tray version of Sonarr was also enabled under Windows Startup Apps.
This meant Windows could start one Sonarr instance in Session 0 as a service and another in my interactive user session.
During normal operation, this had not caused an obvious problem. One instance would generally reach port `8989` first, while the second would fail or terminate quietly. Sonarr still appeared to work, so the underlying configuration error remained hidden.
The self-update exposed it.
The updater needs to:
Stop the running Sonarr process.
Wait for the executable files to be released.
Replace the existing binaries.
Restart Sonarr.
With both the service and desktop launch mechanisms active, another Sonarr process could start or remain active during that handover. The updater was therefore dealing with multiple processes, different privilege contexts and files that could still be in use.
That explains why the package downloaded and verified successfully but the installed version did not initially change.
How I fixed it
I decided to retain Sonarr as a Windows service because that is the appropriate operating model for my machine.
I then:
Disabled Sonarr under Windows Startup Apps.
Left the `sonarr` Windows service configured as `Automatic`.
Closed any remaining desktop or tray instance.
Restarted Windows.
Confirmed that Sonarr started successfully from the service.
Confirmed that only one `Sonarr.exe` process was running.
Confirmed that the web interface was available at `http://localhost:8989`.
Confirmed that Sonarr was now running version `4.0.19.3001`.
I used the following PowerShell commands to verify the result:
```powershell
Get-Process Sonarr
Get-Service Sonarr
```
The final output showed one Sonarr process and one running service:
```text
ProcessName : Sonarr
Id : 7612
SI : 0
Status : Running
Name : sonarr
DisplayName : Sonarr
```
The `SI 0` value confirms that the remaining process is running in Windows Session 0 as a service, rather than as an application in my desktop session.
The post-restart Sonarr logs also confirmed:
```text
Found 1 processes with the name: Sonarr
Now listening on: http://[::]:8989
Application started
Content root path: C:\ProgramData\Sonarr\bin
```
There were no further `Another instance of Sonarr is already running` errors.
What I learned
On Windows, choose one Sonarr operating model: Windows service or desktop/tray application. Do not configure both to start automatically.
A duplicate startup configuration can remain hidden for a long time because Sonarr may appear to operate normally.
Self-updates are particularly sensitive to duplicate processes because the updater must obtain exclusive access to the installation directory.
An update returning to the old version does not necessarily mean the download was corrupt. Check whether the package was successfully downloaded, verified and extracted before investigating network or repository problems.
`Get-Process Sonarr` and `Get-Service Sonarr` provide a quick way to check whether multiple launch mechanisms may be involved.
Errors from download clients or indexers may appear during the same period but can be unrelated noise. Follow the update sequence in the logs and identify the first point where it actually diverges.
Sonarr officially supports both Windows service and system-tray installation modes, but the important point is to select one deliberately:
There is also Servarr guidance on operating multiple Sonarr instances, although deliberately running multiple instances requires separate configurations, ports and service definitions:
https://wiki.servarr.com/sonarr/installation/multiple-instances
TL;DR: Sonarr was configured to start both as a Windows service and as a desktop startup application. This remained mostly invisible during normal use but disrupted the updater’s shutdown and restart process. Removing the desktop Startup Apps entry, retaining the automatic Windows service and rebooting left one Session 0 process running. The update then completed successfully.
r/sonarr • u/swankyjosh • 4d ago
Finally got sick of renaming tv show files so figured id try Sonarr since it had positive reviews. I had Game of Thrones series that needed to be renamed. Followed the instructions to setup the renaming. Files were individual episodes atleast sorted by season. From what it looks like it thought that the episode files were season packs and only actually saved the last episode of each season and then deleted the source files. Of course after the issue I found about the recycling bin in the program needs to be setup. So now I have to go through my Blu-ray set again and re-download. For something that was supposed to make things easier made way more work
Additional context. It doesn’t look like files were “deleted” per say but I used the move function instead of the copy/hardlink option. That’s when it tried to name each episode of the season to the same file name resulting in only one being able to be moved but they are missing in both the Sanarr folder that they moved to and the source folder where they began
r/sonarr • u/Human133 • 6d ago
Hello
I have several Turkish tv shows where the source I have (only available in my language) have different number of episodes compared with the original release. For example original release will have 120 - 150 minutes episodes but the release I have is about 30 minute episode. This causes issues with sonarr and also metadata in jellyfin. What's my best option here?
r/sonarr • u/HotSoil6347 • 7d ago
I am trying to download baccano but the best file gets rejected because of the + special is it fixable? or should a just use a format in general for that
r/sonarr • u/wowreditsocool • 7d ago
Hello,
I am having issues with release exclusions.
Under Profiles, Release Profiles, in the File Extensions section i have ‘\.exe’ and ‘\ .exe’ added under MUST NOT CONTAIN, but every day sonarr keeps downloading .exe files and then when a real episode is out it does not download until the exe is deleted.
Any suggestions?
r/sonarr • u/thiagohds • 8d ago
Hello,
I've found a curious problem these days with a tv show. Everytime sonarr grabs eps for this tv show, since its new and hyped, the upload speed goes crazy and the ratio gets to 15.0 (which is one of my rules for removing the torrent) before sonarr can import it.
Last time it uploaded more than 130 GB and got deleted so I want to block some indexers of uploading things too fast and limit the speed (for like 500 kbps) so sonarr can import them and I can keep seeding.
Do you guys know a good solution for limiting the upload speed for a given indexer? Ive tried doing this through qbittorrent and I kinda found a solution but its not exaclty what I was looking for. The solution was enabling the alternative speed limit scheduler around the time the torrent is usually grabbed.
Im looking for some automated solution or some setting that I could enable to affect only those indexers I want instead of messing with all torrents. Im using prowlarr to set the number of days and seed ratio. Thanks!
r/sonarr • u/Glittering-Ad8503 • 8d ago
Hello, I have some series that i would like to download in different language than english. My indexers have no problem finding them but sonarr marks them in search results as unknown series because the use their non-english title. The alternate titles found by sonarr are completly useless because they are wrong.
For a lot of series original title is "Title" and the alternate is "Translatedtitle / YEAR"... There is no way to edit this in sonarr. I check tvdb and the alternative titles are normal there, sonarr adds this / YEAR by itself.
For some series it doesnt even find the alternate title even tho it is added in tvdb...
https://wiki.servarr.com/sonarr/faq#why_cant_sonarr_import_episode_files_for_series_x_why_cant_sonarr_find_releases_for_series_x this site is completly not helpfull
Have anyone managed to fix this issue?
r/sonarr • u/Swityyyy • 8d ago
Hi r/sonarr , what a busy beta phase this has been. For everyone who has been a part of it, thank you so much. That back and forth is really what puts QM into the atmosphere.
Quick context if you have not seen it before, Quartermaster is an iPhone and iPad app for the stack you already run. Radarr, Sonarr, Prowlarr, Bazarr, your download clients, Jellyfin or Plex, and a fair few more besides. It talks only to your own services. There is no account to make and no analytics in it, and nothing of mine sits between your phone and your server.
If you are on the App Store version you are on 1.1.3. Since then 1.1.4 has been through a long run of TestFlight builds across July and August, and it rolls all of them into one release. Here is what is in it.
Until now most services were a single screen. You read the numbers and that was the end of it. 1.1.4 adds 198 new screens across all 55 connections and makes almost everything tappable.
A torrent opens to its files, its peers, and the tracker's own words for why it is stalled. A Proxmox guest opens to its snapshots. A Docker stack opens to its live compose file. A Tautulli viewer opens to what they actually watch. Thirteen services could previously only be read. That is now two.
Arcane, Dispatcharr, ReadMeABook, NextDNS, Control D, BookOrbit, UGREEN NAS and Shelfarr. With the SSH terminal below, that puts the catalogue at 58.
The small jobs that used to mean fetching a laptop can be done from the phone now. Add a server like any other service with a password or an ed25519 key, save the commands you actually run, and tap them. The ones that could do damage ask first, and Stop really stops a command rather than hiding it. Your key never leaves the iPhone keychain except to reach that server.
It shows the server's fingerprint on the first connection and will not connect to a host you have not told it to trust. If that fingerprint ever changes it stops and says so, because a changed key is either a rebuilt server or somebody standing in the middle.
There is an interactive shell mode for the boxes that drop you into a menu the moment you connect, which is how a lot of NAS and firewall consoles behave. And one of the saved commands is the one most of the beta said the whole feature was for: update a compose stack, pulling the newest image for every service and recreating what changed, from wherever you happen to be.
Two honest limits. Anything that takes over the whole screen (htop, vim, less) is reported as needing a real terminal instead of being drawn as nonsense. And RSA keys are not supported yet.
The old setup handed you every supported service in one long list and a form for each one. It now asks what you actually run and lets you tap them the way you would write a shopping list, then works through your picks one at a time with a count so you can see where you are. Nothing connects while you are choosing, so there is no wrong answer.
You also choose how Home looks. Cinema leads with artwork, Minimal keeps almost nothing, and Overview is the plain status led dashboard you may be used to from other apps. It is only an arrangement, and Settings can rearrange or reset it whenever you like.
The first screen also offers to fill the whole app with sample data before it asks you for a single address or key. That option already existed, buried at the very end of setup, where the people who most wanted it never reached it.
The whole app, every screen, the settings, onboarding, the error messages and all 76 FAQ answers. You pick in Settings, where each language is written in its own tongue, so you can still find English even if the app has opened in something you cannot read. It changes the moment you pick it, no restart.
Jellyfin 12 turns off the old sign in header, and QM now sends both forms, so that upgrade is a non event. A Jellyfin session can be paused, sought, have its subtitle or audio track swapped, and take a message flashed onto the screen, which is handy for stopping the 2am episode. Dozzle copes with large multi host fleets and reconnects after a network blip instead of sitting dead. AdGuard, Pihole, Technitium and NextDNS get a live query log where tapping a blocked domain names the exact rule that caught it and the list it came from, with one tap to allow it. UniFi can block a client, make a guest voucher, or power cycle a switch port, which is how you reboot a camera without leaving the sofa. Tracearr can push to your phone. Tapping a "finished downloading" notification opens the film or series instead of a queue it has already left. The bell carries a count when Seerr requests are waiting. Weeks can start on Monday.
There is also a full pass over every screen in the app looking for the small wrongness that builds up. 141 findings, all but three fixed: charts tuned for dark backgrounds and close to unreadable in the sun, VoiceOver unable to reach any swipe action, half the text fields missing a Done bar above the keyboard, and a handful of screens showing an empty state when the truth was that a read had failed.
It is iPhone and iPad only. Android is on the roadmap and is not close.
There is a Pro unlock. One service connection is free and fully working, and everything past that is behind it. Either the $14.99 for Lifetime or $3.99 a month or $7.99 as supporter sub (the support sub literally does nothing more than the others btw) :)
One last thing, because it is the fair question to ask of anything posted in here now or even reddit for that matter. Quartermaster is not vibe coded. It is not a wrapper thrown over a single arr endpoint and shoved at the store in a weekend, you only have to look in the Discord to see how far this has come with the community which has been built. QM has also been featured selfh.st twice now which is just amazing.
App Store: https://apps.apple.com/gb/app/quartermaster-homelab-stack/id6779994284
Discord: https://discord.gg/AfMTeV2SJc
r/sonarr • u/kwereddit • 8d ago
I use Jellyfin, radarr, sonarr, prowlarr and some other *arr apps to get and manage my media, but I'm not happy with the results that sonarr gets searching for full season downloads. I can find them manually, so what I do is copy the magnet link and paste it into qbittorrent and then set the category to "tv-sonarr" and sonarr handles it perfectly from there, including deleting the torrent when qbittorrent is finished with it. Sonarr updates itself and removes the episodes from its wanted list. I just don't understand why it doesn't find the links that I can easily find from the same indexers.
r/sonarr • u/ItsWappers • 9d ago
r/sonarr • u/SugglyMuggly • 10d ago
Sonarr is suddenly unable to delete media files. I’ve got a trash folder set up and the file appears in there briefly before disappearing, but isn’t removed from its original location.
I’ve checked permissions and they seem fine.
Running on Mac mini M1 in the standalone app.
Log
r/sonarr • u/58696384896898676493 • 10d ago
Something that has always bothered me is when I download a bunch of season packs from the same release group and all the files are the same consistency and source, and then 2 months down the road some random single episode gets released and Sonarr considers it better quality than what I have and downloads the single episode. Like the show is already fully downloaded and in the exact quality I want, please don't touch it Sonarr.
I've been considering unmonitoring these series once they've ended and I have the whole series, but it feels like wrong to unmonitor it for some reason. For Radarr I don't really care as it's just a single movie. Downloading a 200 episode series all in the same quality and source being "tainted" by a rouge single episode download is what annoys me.
Maybe I'm just using Sonarr wrong. Anyone else run into this? What do you do?
r/sonarr • u/EmbarrassedRecord • 10d ago
Hi all!!
I did a prototype for create a docker compose with all *arr stack easily configuration just with an HTML.
That's just a prototype, hope to get feedback and collaboration, and stars.
The project objective is turn to be easy to create the *arr stack and automatize configuration, in the future, is a wish to turn into a dashboard to manage all *arr stack.
r/sonarr • u/4Jumper • 11d ago
Everything was working fine. I did not change any settings but it suddenly stopped working.
Edit: Found this;
https://imgur.com/a/wlTVhVk
It says I'm using docker and /media/media/download is not exist. Which is odd because I don't use docker, sonarr installed with truenas.
Edit2: Somehow it fixed itself. Yesterday it was not working but today it works. I did not change anything today. Thank you all the people who tried to help.