...
- Install a JDK. You can install openjdk with Yum (yum install java-1.6.0-openjdk) or get the JDK from Oracle.
Install the Yum repository of the WOCommunity like this:
Code Block language bash sudo curl -o /etc/yum.repos.d/wocommunity.repo https://raw.github.com/wocommunity/wonder/integrationmaster/Utilities/Linux/wocommunity.repo
Once it's done, you can use Yum to install wotaskd and JavaMonitor.
Code Block language bash sudo yum install wotaskd; sudo yum install womonitor;
To install the module for Apache httpd 2.2, run:
Code Block language bash sudo yum install woadaptor
for Apache httpd 2.4:
Code Block language bash sudo yum install woadaptor-httpd24
If SELinux is enabled on your system, wotaskd won't be reachable due to its preventing Apache from opening TCP connections. If you're comfortable with allowing Apache to connect to any TCP ports (including external hosts), you can run the following:
Code Block language bash sudo setsebool -P httpd_can_network_connect=1
Alternatively, Steven Klassen has written a blog post (Custom SELinux Port Access) that outlines how to create and install a wotaskd SELinux module that specifically allows connections to port 1085.
...