MFT node installation linux
- Navigate to the Organization that needs Node access
- Select "MFT Node" from the available options
- To add a new Node:
- Click the Add button
- Enter a name for your Node
- Find your newly created Node in the list and click "Download MFT Node"
- Select the linux-x64 option to download
The Linux MFT Node installation script is provided in two forms:
-
crontabinstall for non root/sudo users. -
systemdinstall script which requires sudo permissions.
Which method should you use?
- If you don’t have root access, use the crontab installation.
- If you do have root access and want better service management, use the systemd installation.
If sudo is required in your environment, contact relevant parties to acquire sudo access before installing.
Copy the shell script from the MFT Node Installation window.
When you execute the script, the package is downloaded and extracted.
This will then guide you through the rest of the setup.
You will be prompted to confirm the installation location:
- Enter location to install node - Default location is
/home/user/Thru/{NodeID}/
You will be prompted to confirm the TempRepository. (This is using as a cache for the node - make sure you have enough space.)
- Enter working directory location - Default location is
/home/user/Thru/{NodeID}/TempRespository
You will be prompted to confirm the location of the log directory.
- Enter log directory location - Default location is
/home/user/Thru/{NodeID}/logs
When a MFT Node is deleted in the UI, the corresponding running MFT Node will automatically uninstall the next time it attempts to check for an update.
TempRepository: Varies depending on the type of flow configurations. For LAN transfers only, a minimum of 100GB is recommended. For high file volumes and large files, storage may need to be as much as 1TB. Retention of files and configuration of retention policies will also affect storage requirements.
Check if the MFT Node service is running:
systemctl status thru-node # For Systemd installs
If using Crontab, confirm the scheduled job exists by running:
crontab -l
If you have no access to the MFT platform and want to remove MFT Node manually:
-
Identify the MFT Node Services
systemctl list-units --type=service | grep thruExample output:
thrunode-TNXBCYA2.serviceMFT Node TNXBCYA2 is the MFT node ID of the MFT Node running
-
Use the Node ID from the service name (in this case
TNXBCYA2) to stop the service and delete the folder:sudo systemctl stop thrunode-TNXBCYA2
sudo systemctl disable thrunode-TNXBCYA2
sudo rm -rf /opt/Thru/TNXBCYA2/- Repeat for other MFT nodes that are listed in step 1. This will stop and remove MFT Node.