control multiple mpd instances with multiple mympd instances #314
-
Is your feature request related to a problem? Please describe. Describe the solution you'd like
Describe alternatives you've considered
With native mpc client it is possible to control an individual port. But the two instances of myMPD are influencing themselve. What I'm doing wrong? is it possible to connect with difference instances to different mpd ports or do I have to have for each myMPD instance one unique virtual machine for example? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Create for each myMPD instance a separate configuration file and add a individual varlibdir option. Look at https://github.com/jcorporation/myMPD/wiki/Configuration. Then copy the startup script and add these configuration as first parameter to the execute call, e.g. By the way: on the roadmap is to support in version 6.7.0 with one myMPD instance multiple MPD instances and I think with MPD 0.22.0 you need also only one MPD instance and use partitions (also supported by myMPD 6.7.0 version). |
Beta Was this translation helpful? Give feedback.
-
Thank you very much, "varlibdir" was the missing information. It's working now as expected! I also will see if 6.7.0 can fulfill my needs and test once it is available |
Beta Was this translation helpful? Give feedback.
Create for each myMPD instance a separate configuration file and add a individual varlibdir option. Look at https://github.com/jcorporation/myMPD/wiki/Configuration. Then copy the startup script and add these configuration as first parameter to the execute call, e.g.
ExecStart=/usr/bin/mympd /etc/mympd2.conf
.By the way: on the roadmap is to support in version 6.7.0 with one myMPD instance multiple MPD instances and I think with MPD 0.22.0 you need also only one MPD instance and use partitions (also supported by myMPD 6.7.0 version).
`