Please use the search bar at the top of the page and make sure you are not creating an already submitted issue. Duplicating issues makes it more difficult for everyone to follow. Your issue may have already been solved in the past as well.
Provide a description of the feature request or bug, the more details the better.
If you are experiencing an issue with a tracker, a full log must be included. Instructions for obtaining logs are here: https://github.com/Jackett/Jackett#troubleshooting
Jackett version:
Mono version (if not using Windows):
Help please... Mac OS High Sierra ver 10.13.2, Mono 4.6.1, Jackett_Install_Macos
My Problem: I either need an admin password to override a corrupt/lost password or a clean uninstall method to remove an incorrectly logged password as I'm unable to access UI/Dashboard. Thanks.
stop jackett, edit the ~/.config/Jackett/ServerConfig.json file and change the AdminPassword line to this:
"AdminPassword": null,
Start jackett again and there should be no password.
Thanks Kaso17, forgive me but... How do I stop Jackett, it autoruns at start up and... Where might I find said file, also what program might I use to edit it... I am no more than an enthusiastic end user who auto installed and have no programming/terminal knowledge?
is this what I'm looking for?
No idea about mac os.
Try doing a rm -f ~/.config/Jackett/
to reset the jackett config.
What ? Where ? How ? Apologies for my apparent incompetence !
I don't have a macos either, but a quick google came up with some basic instructions for you to try out:
sudo -i
launchctl unload ~/Library/LaunchAgents/org.user.Jackett.plist
open -e ~/.config/Jackett/ServerConfig.json
AdminPassword
line and replace it with "AdminPassword": null,
launchctl load ~/Library/LaunchAgents/org.user.Jackett.plist
Good luck.
Thanks Garfield, your copy and paste instructions for terminal worked great for me, you're a star !
Most helpful comment
I don't have a macos either, but a quick google came up with some basic instructions for you to try out:
sudo -i
and supply the admin password when prompted. ( https://stackoverflow.com/questions/31700746/how-to-run-terminal-as-administrator-on-mac-pro)
launchctl unload ~/Library/LaunchAgents/org.user.Jackett.plist
to shutdown the jackett service (https://github.com/Jackett/Jackett#install-as-service)
open -e ~/.config/Jackett/ServerConfig.json
(https://stackoverflow.com/questions/9421717/how-do-i-invoke-a-text-editor-from-the-terminal#21705438)
AdminPassword
line and replace it with"AdminPassword": null,
launchctl load ~/Library/LaunchAgents/org.user.Jackett.plist
(https://github.com/Jackett/Jackett#install-as-service)
Good luck.