Morten It's easy enough to rsync the /var/snd from one RD system to another but you also have to copy the MySQL database which contains all the data other then audio.
If someone creates voice tracks on the remote system, you then need to reverse the process and update the local system both /var/snd and MySQL Like a train network there may be some need for signalling to avoid a wreck. If everyone is on the same network I would not bother, just have the remote boxes use the server audio and mysql. If the remote locations are at a distance there's a fair bit of traffic involved but it can be done. regards Robert On Tue, 2012-07-31 at 16:27 +0200, Morten Krarup Nielsen wrote: > Hi. > I've installed the Paravel Broadcast CD on a PC which operates as a > file-server and MySQL server for my Rivendell setup. I need two client > machines to be able to voice-track. Since they're far far away, I > thought of keeping a local backup of /var/snd on both client machines. > I tried mounting the folder via NFS, but it was to slow to work with, > I tried with a small Rsync-script which should run on the client. The > thought was that it should run in a loop, so it always get new music > from the server, and in the same time uploads voice-tracks to the > file-server. > However I get all kind of errors: Missing files on both sides, message > showing "No energy data" in 'Edit markers' and so on. > What should be the right approach to this? > > Thank you! > > Kind regards, > Morten > > My small script: > > #!/bin/sh > while true ; > do > #from server to client > rsync -avz -e ssh [email protected]:/var/snd /var > #from client to server > rsync -avz -e ssh /var/snd [email protected]:/var/ > done > _______________________________________________ > Rivendell-dev mailing list > [email protected] > http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev _______________________________________________ Rivendell-dev mailing list [email protected] http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
