• Syncing software

    From YK@21:1/5 to All on Thu Jul 29 21:14:38 2021
    I have a customer that wants to sync their documents, including
    Filemaker Pro databases between their office iMac and home MacBook Pro.
    They are both on the same network and running the same OS. I've never
    had the occasion to do this in my years of providing support. Anyone
    have suggestions on the software to use. Found several possibilities,
    but would like to hear from someone with real world experience of
    accomplishing this. TIA

    YK

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Percival John Hackworth@21:1/5 to youkidding@yahoo.com on Fri Jul 30 03:17:35 2021
    On 29-Jul-2021 at 6:14:38PM PDT, "YK" <youkidding@yahoo.com> wrote:

    I have a customer that wants to sync their documents, including
    Filemaker Pro databases between their office iMac and home MacBook Pro.
    They are both on the same network and running the same OS. I've never
    had the occasion to do this in my years of providing support. Anyone
    have suggestions on the software to use. Found several possibilities,
    but would like to hear from someone with real world experience of accomplishing this. TIA

    YK

    Sync-ing a database between multiple systems is not trivial. Depending on the direction you want to sync--master-->client or node <--> node (bidirectional), you can have a mess if the software isn't designed to allow this.

    I know on MySQL, Postgresql, and Oracle, they have feature called
    "replication" where you setup a replicant node (slave is the old term but it's being removed from such tools out of Wokeness). Any write to a database
    creates a duplicate write to the replicant. It's not bidirectional. If you're lucky, Filemaker has this facility.

    If there's no replication, you'll have to automate an extraction all data in the database in some portable form that can be imported. MySQL has an Export feature. Copy that file over to your wife's computer and import it.

    Not a trival task.
    --
    DeeDee, don't press that button! DeeDee! NO! Dee...

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Your Name@21:1/5 to All on Fri Jul 30 15:51:28 2021
    On 2021-07-30 01:14:38 +0000, YK said:

    I have a customer that wants to sync their documents, including
    Filemaker Pro databases between their office iMac and home MacBook Pro.
    They are both on the same network and running the same OS. I've never
    had the occasion to do this in my years of providing support. Anyone
    have suggestions on the software to use. Found several possibilities,
    but would like to hear from someone with real world experience of accomplishing this. TIA

    YK

    You could use iCloud (is using the same AppleID), DropBox, etc. On the
    softwear side there is Sync Folders on the App Store or ChronoSync, or
    you could write a script to use the MacOS built-in Rsync terminal
    command.

    Whatever you use, you need to make sure you've closed the FileMaker
    database before syncing it, otherwise it may not have fully saved any
    changes. The same is true for any other documents really, although with
    some apps, the iCloud approach will mean you can simply continue
    working on an open document.

    Depending on the requirements, probably the simplest approach is to
    simply store the files on a portable external drive an access them from
    there. The syncing can then be done as a backup system on both Macs.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lewis@21:1/5 to youkidding@yahoo.com on Fri Jul 30 04:14:10 2021
    In message <sdvjpv$hob$1@gioia.aioe.org> YK <youkidding@yahoo.com> wrote:
    I have a customer that wants to sync their documents, including
    Filemaker Pro databases between their office iMac and home MacBook Pro.
    They are both on the same network and running the same OS. I've never
    had the occasion to do this in my years of providing support. Anyone
    have suggestions on the software to use. Found several possibilities,
    but would like to hear from someone with real world experience of accomplishing this. TIA

    iCloud
    Sync
    Dropbox

    However, syncing database files is tricky, and may require things like
    ensuring the database is not being accessed before it is synced.
    FileMaker may have a way to manage this on it's own, so I would start
    there for those files.

    --
    Chico: You sing-a high.
    Connie: Yes, I have a falsetto voice.
    Chico: That's-a funny; my last pupil she had-a false set-a teeth.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Dr Eberhard W Lisse@21:1/5 to All on Fri Jul 30 08:33:17 2021
    Am using Unison for years.

    https://www.cis.upenn.edu/~bcpierce/unison/

    el


    On 2021-07-30 03:14 , YK wrote:
    I have a customer that wants to sync their documents, including
    Filemaker Pro databases between their office iMac and home MacBook
    Pro. They are both on the same network and running the same OS. I've
    never had the occasion to do this in my years of providing support.
    Anyone have suggestions on the software to use. Found several
    possibilities, but would like to hear from someone with real world
    experience of accomplishing this. TIA

    YK

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Calum@21:1/5 to Lewis on Fri Jul 30 14:05:37 2021
    On 30/07/2021 05:14, Lewis wrote:

    iCloud
    Sync
    Dropbox

    All of those involve syncing via 3rd-party servers, of course, which is
    a bit circuitous when the two machines are on the same network. Given
    that there's work data involved, there may also be data protection or
    other security considerations--the company I work for certainly doesn't
    allow any of our business data to pass through any of those services
    under any circumstances.

    A peer-to-peer solution like Resilio, or even plain old rsync, might be
    more appropriate.

    However, syncing database files is tricky, and may require things like ensuring the database is not being accessed before it is synced.

    Yep.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From nospam@21:1/5 to com.gmail@nospam.scottishwildcat on Fri Jul 30 09:08:28 2021
    In article <se0tf1$1m4d$1@gioia.aioe.org>, Calum <com.gmail@nospam.scottishwildcat> wrote:


    iCloud
    Sync
    Dropbox

    All of those involve syncing via 3rd-party servers, of course, which is
    a bit circuitous when the two machines are on the same network. Given
    that there's work data involved, there may also be data protection or
    other security considerations--the company I work for certainly doesn't
    allow any of our business data to pass through any of those services
    under any circumstances.

    A peer-to-peer solution like Resilio, or even plain old rsync, might be
    more appropriate.

    nextcloud on a local server.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lewis@21:1/5 to Calum on Fri Jul 30 14:11:49 2021
    In message <se0tf1$1m4d$1@gioia.aioe.org> Calum <com.gmail@nospam.scottishwildcat> wrote:
    On 30/07/2021 05:14, Lewis wrote:

    iCloud
    Sync
    Dropbox

    All of those involve syncing via 3rd-party servers, of course, which is
    a bit circuitous when the two machines are on the same network. Given
    that there's work data involved, there may also be data protection or
    other security considerations--the company I work for certainly doesn't
    allow any of our business data to pass through any of those services
    under any circumstances.

    If the company you work for doesn't understand how encryption works,
    then they have far greater problems than syncing data files. It is
    trivial to ensure that your data is only accessible by you, regardless
    of where it is store.

    There is also Bit torrent sync (renamed, but I forget the name) which
    does not involved other servers.

    A peer-to-peer solution like Resilio, or even plain old rsync, might be
    more appropriate.

    That's the name.

    However, syncing database files is tricky, and may require things like
    ensuring the database is not being accessed before it is synced.

    Yep.


    --
    Telephone trivia turns deadly
    (Scream)

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From YK@21:1/5 to All on Wed Aug 4 12:05:55 2021
    Addressed the issue for FileMaker Pro by using sharing (The client has
    two licenses and just has to remember the file they want to alter has to
    be open on the main computer. Addressed the rest using Sync Folders Pro,
    which I hope take care of the other files. The issue is a non-attached
    office (Hard wired to the same network) with the iMac and a MacBook Pro
    in the residence. They want to work on the Pro if a client calls them
    outside of business hours. They are syncing Mail, Calendars, Notes,
    Keychain, and Safari bookmarks through iCloud.

    Thanks to all who answered.

    YK

    On 7/29/21 9:14 PM, YK wrote:
    I have a customer that wants to sync their documents, including
    Filemaker Pro databases between their office iMac and home MacBook Pro.
    They are both on the same network and running the same OS. I've never
    had the occasion to do this in my years of providing support. Anyone
    have suggestions on the software to use. Found several possibilities,
    but would like to hear from someone with real world experience of accomplishing this. TIA

    YK

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)