Page 1 of 1
[Solved] Can't access Bazarr after fresh install with easy config
Posted: Fri Dec 20, 2024 10:36 pm
by bdog18
Hello!
I did a fresh install of ubuntu server and mounted a 18TB HDD to it for use as the media storage. I then ran yams setup using the easy config since I had gone through the normal config before and now I am unable to access bazarr through the entrypoint. Does anyone have any recommendations on what to do? I have tried restarting the docker container as well as changing the config for bazarr so the ip is my local ip. Any help would be great!
Thanks!
Re: Can't access Bazarr after fresh install with easy config
Posted: Sun Dec 22, 2024 4:08 pm
by rogs
Hey @bdog18!
I haven't updated the easy config in a long time, so that might be the problem. Try deleting the config for bazarr and restarting YAMS again.
Code: Select all
yams stop
rm -r your/install/location/config/bazarr
yams start
That should fix it
Cheers!
Roger.
Re: Can't access Bazarr after fresh install with easy config
Posted: Mon Dec 23, 2024 6:00 pm
by bdog18
@rogs
Thanks for the reply!
I was able to fix it in this way as well so that others can see this if they have issues in the future.
Code: Select all
docker stop bazarr
rm /path/to/local/data/bazarr.db
docker restart bazarr
Thanks for the help!