"Plex URL is invalid" #2306
Replies: 2 comments 7 replies
-
Can you provide the full log? The error you show there is the very last stage after Kometa could not connect to Plex, so there will be an error associated with the actual connection attempt further up. You also may want to take this to the discord for more eyes. |
Beta Was this translation helpful? Give feedback.
-
Also, that If you have another Kometa container up and running, you probably want to exec into it and run the script inside that container, or put this ephemeral container on the same network. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I read through all of the 'Plex URL is invalid' posts and could not find a solution sadly.
Below my config:
`libraries: # This is called out once within the config.yml file
Films: # These are names of libraries in your Plex
remove_overlays: false # Set this to true to remove all overlays
collection_files:
- default: basic # This is a file within Kometa's defaults folder
- default: imdb # This is a file within Kometa's defaults folder
overlay_files:
- default: ribbon # This is a file within Kometa's defaults folder
Series:
remove_overlays: false # Set this to true to remove all overlays
collection_files:
- default: basic # This is a file within Kometa's defaults folder
- default: imdb # This is a file within Kometa's defaults folder
# see the wiki for how to use local files, folders, URLs, or files from git
overlay_files:
- default: ribbon # This is a file within Kometa's defaults folder
settings:
run_order:
cache: true
cache_expiration: 60
asset_directory: config/assets
asset_folders: true
asset_depth: 0
create_asset_folders: false
prioritize_assets: false
dimensional_asset_rename: false
download_url_assets: false
show_missing_season_assets: false
show_missing_episode_assets: false
show_asset_not_needed: true
sync_mode: append
minimum_items: 1
default_collection_order:
delete_below_minimum: true
delete_not_scheduled: false
run_again_delay: 2
missing_only_released: false
only_filter_missing: false
show_unmanaged: true
show_unconfigured: true
show_filtered: false
show_options: true
show_missing: true
show_missing_assets: true
save_report: false
tvdb_language: eng
ignore_ids:
ignore_imdb_ids:
item_refresh_delay: 0
playlist_sync_to_users: all
playlist_exclude_users:
playlist_report: false
verify_ssl: false
custom_repo:
overlay_artwork_filetype: jpg
overlay_artwork_quality: 75
plex:
url: http://192.168.178.10:32400/
token: my-token
timeout: 60
db_cache:
clean_bundles: false
empty_trash: false
optimize: false
verify_ssl:
tmdb: # REQUIRED for the script to run
apikey: my-api-key
language: en
cache_expiration: 60
region:
#tautulli: # Can be individually specified per library as well
url: ##############http://192.168.1.12:8181
apikey:
#github:
token:
`
Command I run:
`
myname@myserver:~/Documents/Docker stuff/Kometa$ docker run --rm -it -v "/home/myname/Documents/Docker stuff/Kometa/config:/config:rw" kometateam/kometa --run
`
Gets me this error:
`
| Traceback (most recent call last): |
| File "/modules/config.py", line 1287, in init |
| raise Failed("Config Error: No libraries were found in config") |
| modules.util.Failed: Config Error: No libraries were found in config |
| |
| Traceback (most recent call last): |
| File "//kometa.py", line 333, in start |
| config = ConfigFile(my_requests, default_dir, attrs, secret_args) |
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| File "/modules/config.py", line 1287, in init |
| raise Failed("Config Error: No libraries were found in config") |
| modules.util.Failed: Config Error: No libraries were found in config |
| |
| Config Error: No libraries were found in config |
| |
|========================================== Error Summary ===========================================|
| |
| Count | Message |
|=======|============================================================================================|
| 2 | Plex Error: Plex URL is probably invalid |
| |
|========================================= Critical Summary =========================================|
| |
| Count | Message |
|=======|============================================================================================|
| 1 | Config Error: No libraries were found in config |
| |
|====================================================================================================|
| Finished Run |
| Version: 2.1.0 |
| Finished: 22:36:55 2024-10-31 Run Time: 0:00:06 |
|====================================================================================================|
`
The library names etc. are correct.
Both docker containers are on the same (macvlan) network and I can curl the PleX container from my Kometa container.
Connection type is not set to 'Secure' in PleX either. Token/API verified multiple times too.
Not sure what else I can try. Any ideas welcome.
Thank you in advance.
Beta Was this translation helpful? Give feedback.
All reactions