Media on Plex

  • Hello guys and gals!

    After trying to solve my problem without any success, I wanted to share it with you guys since I'm not too experienced with OMV/Docker/Plex.


    I'm hosting my own media server with OMV and running Plex via Docker on a mini desktop, which I have set up about eight months ago.
    Everything good so far.

    Then I ran out of space so I added a new SSD to my system and that's where I'm stuck.

    I added/mounted the drive as I did before but I am more than certain that I did something wrong since Plex is not showing the newly added files from the new drive.
    (Thought it might be because of mergerfs but if I just use the new drive via the path in shared folders, same problem)
    I've updated Plex and also tried changing the movie names just to be sure.


    Also what I have noticed, when I switch the path via shared folders, I can see the different content off the different drives in my file explorer but on my Plex-App it stays the same (the old one).
    I don't know if it is because of the mount setting but I wouldn't know how to change them.


    Thanks in advance.


    Edit:

    I have noticed that my Plex container has the old path as a mount even tho I have changed it in "files" and restarted afterwards.


    Edit 2:
    I have created a separate shared folder which is visible on my file explorer but Plex can't find it in the library.

  • crashtest

    Approved the thread.
  • crashtest

    Approved the thread.
  • macom

    Approved the thread.
  • Can you post your compose file for plex container to start using the code box (</>)?


    If you have a new drive and a new shared folder, you will need to add this new location (volume) to your compose for plex to see it.

    OMV 7 (latest) on N100 Minipc (16GB) and RPI5 (8GB). OS on SD card. System ext4 on SSD. Data BTRFS on HDDs

  • Hey!
    I'm not too sure if that's what you meant, but here is code from my file in compose for plex.


    • Official Post

    What does this folder correspond to on your system?

    /srv/dev-disk-by-uuid-a7319fa2-65dd-49d2-9719-0c3e6f3507d9/Media


    Is this really the case in your compose file?

    - PUID=<1000>

    - PGID=<100>

    The normal thing would be this:

    Code
    - PUID=1000 
    - PGID=100
  • Code
    volumes:
          - /srv/dev-disk-by-uuid-a7319fa2-65dd-49d2-9719-0c3e6f3507d9/Media:/media
          - /srv/dev-disk-by-uuid-bec40b4f-0750-41a7-8a09-d4063f9093e4/config/plex:/config
          - /srv/mergerfs/datapool1/Media:/media

    you can't have a path pointing to same destination folder try something like:


    Code
    volumes:
          - /srv/dev-disk-by-uuid-a7319fa2-65dd-49d2-9719-0c3e6f3507d9/Media:/media
          - /srv/dev-disk-by-uuid-bec40b4f-0750-41a7-8a09-d4063f9093e4/config/plex:/config
          - /srv/mergerfs/datapool1/Media:/media_Mergerfs
  • Thank yall for the response!

    What does this folder correspond to on your system?

    /srv/dev-disk-by-uuid-a7319fa2-65dd-49d2-9719-0c3e6f3507d9/Media


    Is this really the case in your compose file?

    The normal thing would be this:

    Code
    - PUID=1000 
    - PGID=100

    Yeh, I've had it like that since I've installed everything. I changed it now tho, without any notable changes.
    "/srv/dev-disk-by-uuid-a7319fa2-65dd-49d2-9719-0c3e6f3507d9/Media" corresponds to the folder "Media" on my first installed SSD.


    Code
    volumes:
          - /srv/dev-disk-by-uuid-a7319fa2-65dd-49d2-9719-0c3e6f3507d9/Media:/media
          - /srv/dev-disk-by-uuid-bec40b4f-0750-41a7-8a09-d4063f9093e4/config/plex:/config
          - /srv/mergerfs/datapool1/Media:/media

    you can't have a path pointing to same destination folder try something like:


    Code
    volumes:
          - /srv/dev-disk-by-uuid-a7319fa2-65dd-49d2-9719-0c3e6f3507d9/Media:/media
          - /srv/dev-disk-by-uuid-bec40b4f-0750-41a7-8a09-d4063f9093e4/config/plex:/config
          - /srv/mergerfs/datapool1/Media:/media_Mergerfs

    I changed it as you suggested but it did not have any effect on my Plex. Still not able to see all my media on my second SSD.

  • I think you will still need to update your plex library config to add the new media location/volume. You should be able to browse and find the new volume (see example below)


    OMV 7 (latest) on N100 Minipc (16GB) and RPI5 (8GB). OS on SD card. System ext4 on SSD. Data BTRFS on HDDs

  • Are the permissions and ownership of the files that can be read the same as those of the files that can't be read?

    --
    Google is your friend and Bob's your uncle!


    A backup strategy is worthless unless you have a verified to work by testing restore strategy.


    OMV AMD64 7.x on headless Chenbro NR12000 1U Intel Xeon CPU E3-1230 V2 @ 3.30GHz 32GB ECC RAM.


  • I think you will still need to update your plex library config to add the new media location/volume. You should be able to browse and find the new volume (see example below)


    I thought so too in the beginning but whenever I scan or add the "media" folder again, it only shows the movies from my first SSD.

    Are the permissions and ownership of the files that can be read the same as those of the files that can't be read?

    If I check the files properties in my network, they seem to have the same permissions/ownership.


    I know I am overlooking something, probably pretty obvious but I don't know what it is :(

  • I thought so too in the beginning but whenever I scan or add the "media" folder again, it only shows the movies from my first SSD.

    If I check the files properties in my network, they seem to have the same permissions/ownership.


    I know I am overlooking something, probably pretty obvious but I don't know what it is :(

    You should be checking them on the disks.

    --
    Google is your friend and Bob's your uncle!


    A backup strategy is worthless unless you have a verified to work by testing restore strategy.


    OMV AMD64 7.x on headless Chenbro NR12000 1U Intel Xeon CPU E3-1230 V2 @ 3.30GHz 32GB ECC RAM.


  • You should be checking them on the disks

    What exactly do you mean by "on the disks" ? I did check some files for comparison on my network where my drives/disks share a folder.

    All the permissions are the same.

  • The permissions and ownership of shares are not necessarily the same as those of files and folders on the filesystem. You need to be checking the latter.

    --
    Google is your friend and Bob's your uncle!


    A backup strategy is worthless unless you have a verified to work by testing restore strategy.


    OMV AMD64 7.x on headless Chenbro NR12000 1U Intel Xeon CPU E3-1230 V2 @ 3.30GHz 32GB ECC RAM.


  • The permissions and ownership of shares are not necessarily the same as those of files and folders on the filesystem. You need to be checking the latter.

    Excuse my inefficient knowledge, but how would I do so?

  • I know I should access my media folder but when I list the files/folders it doesn't really show a lot plus I don't know how to access the shown paths.

    You need to check the permissions on the HOST path.


    First, learn how to post th einfo requested inside CODE boxes via ssh. Don't post pictures when you can post text:

    This is a How to do it correctly:

    [How-To] Post content in a code box - Guides - openmediavault


    Now, post the output of:

    ls -al /srv/mergerfs/datapool1/

    ls -al /srv/mergerfs/datapool1/Media

    ls -al /srv/dev-disk-by-uuid-a7319fa2-65dd-49d2-9719-0c3e6f3507d9/

    ls -al /srv/dev-disk-by-uuid-a7319fa2-65dd-49d2-9719-0c3e6f3507d9/Media


    And which PATH is seen proper on Plex?

    If the merged one, you can simply add the new drive to that datapool and PLEX will see it without further changes.

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!