Extract New Build
- Copy the package for the Security Provider to the /opt/rockwell directory, so that it is available to the fta-security user:$ sudo cp FTASecurity.<Version>.zip /opt/rockwell
- Upgrading requires that the Security Provider service is down. Use the following command to stop the service:$ sudo /bin/systemctl stop fta-security.service
- Next, move the Security Provider install directory to another location:$ sudo mv /opt/rockwell/fta-security /opt/rockwell/fta-security.oldNOTE:Delete the existing fta-security.old folder, if available.
- Create a new root directory for Security Provider:$ sudo mkdir -p /opt/rockwell/fta-security$ sudo chmod 0750 /opt/rockwell/fta-security$ sudo chown fta-security:fta-security /opt/rockwell/fta-security
- Now that things have been setup to run the Security Provider as a service user need to install the application. Do this by switching to the fta-security user:$ sudo su - fta-security
- Now that users are switched the current working directory should be /opt/rockwell/fta-security. A copy of the package file should be in the directory above the current working directory.
- Unzip the file and move the contents to the current directory. Also clean up a couple of things with file permissions:unzip ../FTASecurity.<Version>.zipmv FTASecurity/* .rm -rf FTASecuritychmod -R +x `find . -type f -printf "%p\n" | grep \.sh$`
Provide Feedback