Basic setup
note
Before the installation, ensure that you have prepared the servers and executed the precheck.
Remember to run the following commands from the directory, where you have downloaded and extracted the installation package, for example, /opt/workfusion/wf_installer.
cd PACKAGE_DIR # /opt/workfusion/wf_installer
note
If your security policy doesn't allow users to have sudo privileges, you can execute the preinstall root steps as another user, which already has sudo permissions. All you have to do is to provide ownership of the PACKAGE_DIR directory to that user, perform preinstall, and then revert ownership.
Install APP server components
On the APP server, as the application user, run the following command:
$ ./install.sh preinstall lb -c local # run the preparation script to check the environmentInstall the components.
$ ./install.sh install lb -c local # install HAProxy $ ./install.sh install int -c local # install the INT components $ ./install.sh install bep-master -c local # install the BEP Master components $ ./install.sh install app -c local # install the APP componentsCheck the installation by running the following commands one-by-one:
$ ./install.sh check lb -c local $ ./install.sh check int -c local $ ./install.sh check bep-master -c local $ ./install.sh check app -c local
Install BEP Agent component
To install the component, on the BEP Agent server, as the application user, run the following commands:
$ ./install.sh preinstall bep-agent -c local
$ ./install.sh install bep-agent -c local
$ ./install.sh check bep-agent -c local
To install several BEP Agent servers, on each BEP Agent server, as the application user, run the following commands.
note
Remember to change the --limit parameter accordingly for each server. For example, for BEP Agent 2 set bep_agent[1], for BEP Agent 3 set bep_agent[2], and so on.
$ ./install.sh preinstall bep-agent -c local --limit bep_agent[0]
$ ./install.sh install bep-agent -c local --limit bep_agent[0]
$ ./install.sh check bep-agent -c local --limit bep_agent[0]
Install OCR component
To install the component, on the OCR server, run the following commands as the application user:
$ ./install.sh preinstall ocr -c local
$ ./install.sh install ocr -c local
$ ./install.sh check ocr -c local