FireFly Media Server › Firefly Media Server Forums › Firefly Media Server › Setup Issues › Something Happened–Now Getting and Empty Playlist
- This topic has 3 replies, 2 voices, and was last updated 17 years, 7 months ago by bbjonz.
-
AuthorPosts
-
06/02/2007 at 2:56 PM #1078bbjonzParticipant
Hi Everyone,
Firefly was running great on my Ubuntu server (dapper drake) but for some reason (from what I can tell) mt-daapd stopped. I restarted it and now it shows an empty playlist in iTunes (on the Mac I am accessing firefly from). The songs are on the server where they are supposed to be but other than that, nothing. This is true also of the config page on the server box–it shows 0 tunes in the library but indicates otherwise that all is well. Anyone have any clues? What other info can I provide?
Thanks in advance.
Joe
06/02/2007 at 3:00 PM #9015bbjonzParticipantOtay–found the problem. I changed permissions on the music folder (which is not under root) from 777 to just read privileges for others and group. Dumb. On the other hand, this brings up another question–what’s the best way to set up the folders? Should it be under root (probably not) or should I arrange permissions a bit differently?
Joe
07/02/2007 at 12:09 AM #9016rpeddeParticipant@bbjonz wrote:
Otay–found the problem. I changed permissions on the music folder (which is not under root) from 777 to just read privileges for others and group. Dumb. On the other hand, this brings up another question–what’s the best way to set up the folders? Should it be under root (probably not) or should I arrange permissions a bit differently?
Joe
Read only is fine, but remember the “execute” bit on folders is the “allow descent into folder” bit. If it isn’t a+x, then the server can’t enumerate the items in the folder.
So you want 755 on folders and 644 on files. You can always use find and xargs or someting like that to make it easier:
find . -type d -exec chmod 2775 {} ;
find . -type f -exec chmod 664 {} ;
or
find . -type d -print | xargs -n1 chmod 2775
find . -type f -print | xargs -n1 chmod 664
Or something of that nature.
— Ron
07/02/2007 at 1:06 AM #9017bbjonzParticipant…my heartfelt thanks!
Joe
-
AuthorPosts
- The forum ‘Setup Issues’ is closed to new topics and replies.