I'm trying to set up mpd on a remote machine (a raspberry pi running arch) reading the music directory and mpd database from my local machine, with directories exported via NFS. However, I can't get mpd to start up on pi. This is what I get:
$this->bbcode_second_pass_code('', '
-> mpd --no-daemon --stdout --verbose
config_file: loading file /etc/mpd.conf
server_socket: bind to '0.0.0.0:6600' failed: Address already in use (continuing anyway, because binding to '[::]:6600' succeeded)
path: SetFSCharset: fs charset is: UTF-8
libsamplerate: libsamplerate converter 'Fastest Sinc Interpolator'
vorbis: Xiph.Org libVorbis 1.3.5
opus: libopus 1.1
sndfile: libsndfile-1.0.25
fatal_error: Connection refused
')
This is the /etc/mpd.conf on the pi:
$this->bbcode_second_pass_code('', '
music_directory "nfs://192.168.1.101/home/myuser/Music"
playlist_directory "/home/myuser/.mpd/playlists"
log_file "/home/myuser/.mpd/log"
pid_file "/home/myuser/.mpd/pid"
state_file "/home/myuser/.mpd/state"
user "myuser"
bind_to_address "any"
gapless_mp3_playback "yes"
database {
plugin "proxy"
host "192.168.1.101"
}
input {
plugin "curl"
}
audio_output {
type "pulse"
name "Local Music Player Daemon"
server "127.0.0.1"
}
')
This is /etc/exports on the local machine:
$this->bbcode_second_pass_code('', '
/home/myuser/Music 192.168.1.102(ro,insecure)
/home/myuser/.mpd 192.168.1.102(ro,insecure)
')
Can anyone tell me what I might be missing?