Provide a Remote File System for the FME Server System Share
FME Server System Share files, which include Repositories and Resources, are installed in specific directories that are shared to enable access from different computers.
Create a directory for the FME Server System Share. The accounts that run the FME Server components must have read and write permissions on this directory. For more information, see Directory and Account Permissions.
Linux Only
For distributed installations on Linux, it is necessary to create a user, prior to installation, on the machine that will host the installation of the FME Server Core and Engines. This user must be named 'fmeserver' and belong to group 'fmeserver', and be granted permissions on the FME Server System Share. For more information, see Directory and Account Permissions.
Example Instructions
The following example creates user 'fmeserver' in group 'fmeserver', and allows mount /mnt/data to be writable by the newly-created user.
Note: The following instructions are provided as a general guideline for adding a user and mounting a directory. Exact instructions may vary depending on the distribution and share type in your Linux configuration.
- Run the following commands in the Linux command line:
- Mount the FME Server System Share directory so that user 'fmeserver' has read and write permissions. For example:
groupadd fmeserver
useradd -m -g fmeserver fmeserver
mount -t cifs //network/share /mnt/data -o gid=1008,uid=1008
gid
and uid
are the group id and user id of the user and group that were created. These id's can be found using these commands:
id -g fmeserver
id -u fmeserver