All part of the learning curve. Avoid using default directories /home, /mnt,/media for anything Plex as they can have their permissions overwritten when you do an OS upgrade.
Present in this log file (would have liked to see the whole .zip bundle) are permission problems.
Try the below commands
# change the default permissions to owner='rwx', everyone else to 'r-x'
# 'x' means to traverse the directory to subdirectories & files
sudo find /home/smeagol -type d -exec chmod 755 {} \;
sudo find /media/smeagol -type d -exec chmod 755 {} \;
# change the default permissions to owner= 'rw-', everyone else 'r-only'
sudo find /home/smeagol -type f -exec chmod 644 {} \;
sudo find /media/smeagol -type f -exec chmod 644 {} \;
Restart Plex:
sudo systemctl restart plexmediaserver.service
Chuck’s Linux tips covers creating a directory for media and much more: Linux Tips - #10 by ChuckPa