Plex-Meta-Manager/docs/home/guides/wt/wt-03-lib-err-and-fix.md

56 lines
2.4 KiB
Markdown
Raw Normal View History

2022-12-10 17:31:13 +00:00
Ive removed some of the lines for space, but have left the important bits:
```
...
| Starting Run|
...
| Locating config...
|
| Using /Users/mroche/Plex-Meta-Manager/config/config.yml as config
...
| Connecting to TMDb...
| TMDb Connection Successful
...
| Connecting to Plex Libraries...
...
| Connecting to Movies-NOSUCHLIBRARY Library... |
...
| Plex Error: Plex Library Movies-NOSUCHLIBRARY not found |
| Movies-NOSUCHLIBRARY Library Connection Failed |
|====================================================================================================|
| Plex Error: No Plex libraries were connected to |
...
```
You can see there that PMM found its config file, was able to connect to TMDb, was able to connect to Plex, and then failed trying to read the “Movies-NOSUCHLIBRARY" library, which of course doesnt exist.
Open the config file again and change "Movies-NOSUCHLIBRARY" to reflect *your own* Movie library in Plex.
2023-05-27 04:00:26 +00:00
Say my Movies library is called “All The Movies", so mine looks like this:
2022-12-10 17:31:13 +00:00
```yaml
libraries:
2023-05-27 04:00:26 +00:00
All The Movies: ## <<< CHANGE THIS LINE
2022-12-10 17:31:13 +00:00
metadata_path:
- pmm: basic # This is a file within the defaults folder in the Repository
- pmm: imdb # This is a file within the defaults folder in the Repository
# see the wiki for how to use local files, folders, URLs, or files from git
```
2023-05-27 03:54:44 +00:00
At this point, the top bit of your config file should look like this:
```
libraries:
THE_NAME_OF_YOUR_MOVIE_LIBRARY: ## <<< CHANGE THIS LINE
metadata_path:
- pmm: basic # This is a file within the defaults folder in the Repository
- pmm: imdb # This is a file within the defaults folder in the Repository
# see the wiki for how to use local files, folders, URLs, or files from git
playlist_files:
- pmm: playlist # This is a file within PMM's defaults folder
# see the wiki for how to use local files, folders, URLs, or files from git
```
2023-05-27 04:00:26 +00:00
Where `THE_NAME_OF_YOUR_MOVIE_LIBRARY` has been replaced by the name of your movie library as shown in Plex ["All The Movies" here]:
![movie-lib-name](movie-lib-name.png)