Tell me more ×
Raspberry Pi Stack Exchange is a question and answer site for users and developers of hardware and software for Raspberry Pi. It's 100% free, no registration required.

I want to set up MPD on my Raspberry Pi. I am using latest Debian Wheezy, and I want MPD to run on network and to listen to any interface. So far i've installed it:

sudo apt-get install mpd

and set these variables in /etc/mpd.conf

music_directory "/mnt/Music"
bind_to_address "::"

and somehow got it working and playing my music. But after a reboot it did not start automatically and my client (gmpc) does not see anything in the database and when I try to update the database (via gmpc) it says, that it is already updating, but actually it is not updating, because mpd process is consuming only 0.3 %cpu.

share|improve this question

1 Answer

up vote 3 down vote accepted

I've changed bind_to_address to "any" and set mpd to be /var/run/mpd owner.

sudo chown mpd /var/run/mpd

and gave 755 permissions to /var/run/mpd/pid file

sudo chmod 755 /var/run/mpd/pid

Now it is working perfectly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.