Storing encrypted container data externally and on a different place
Now you can break the limit and move your encrypted container files to another disk. But how? Well, we use symbolic directory links. That's a feature built into operation systems for decades and supported at very low level. So the key thing is that next to your database file FileMaker puts the RC_Data_FMS file. This is the directory where remote containers store their data. And inside you find a folder for each of your databases using remote containers. And this folder can be replaced with a symbolic link.
So follow this steps:
- Be sure you know how to use Terminal and/or command line on Windows. You may want to consult system admin.
- Make sure nobody uses the database currently.
- Make backup of everything in case you break something.
- Copy the folder inside RC_Data_FMS to an other location, e.g. network share or external hard disk.
- Rename the old data folder.
- on Mac:
- Open Terminal.
- Use cd command to move into the RC_Data_FMS folder
- Use the ln command with the -s option to make a new symbolic link. So enter "ln -s" followed by path to dest path followed by name of new link. All separated with spaces. e.g. in my case: ln -s /Volumes/Ablage1/Test/FMServer_Sample FMServer_Sample
- on Windows:
- Open command line as admin
- Use cd command to move into the RC_Data_FMS folder
- Use the mklink command with the /D option to make a new symbolic link. So enter "mklink /D" followed by name of the new folder and followed by name to dest path. All separated with spaces. e.g. in my case: mklink /D FMServer_Sample "\\vmware-host\Shared Folders\Test\FMServer_Sample"
- open database and put something in a container. You should see FileMaker add a file to the new location.
- Test and see if incremental backup and other server features still work well.