Known Issues

Installation

During installation, you may encounter an error caused by the noexec option that has been set for the /tmp mount point. With noexec flag, you cannot run executable files.

You can use one of the following workarounds:

  • Set the exec option for the /tmp folder. For this, run the following (superuser permissions are required):

sudo mount -o remount,exec /tmp

sudo ./XESFHIRModuleInstaller

sudo mount -o remount,noexec /tmp

  • Create your custom temp directory. For this, run the following:

With superusers permissions:

mkdir -p /home/xeuser/tmp

export TEMP=/home/xeuser/tmp

./XESFHIRModuleInstaller -install fhir

Without superusers permissions:

mkdir -p /home/xeuser/tmp

$sudo TEMP=/home/myuser/ tmp/

./XESFHIRModuleInstaller