WAS THIS PAGE HELPFUL? Leave Feedback
Overview
With the increased availability of large systems with typically 8 or more processors, 16 GB of memory and terabytes of disk space, it becomes necessary to consider re-configuring GroundWork Monitor Enterprise to take advantage of these resources in large deployments. GroundWork Monitor Enterprise was developed and optimized for dual core 4-8 GB systems and the usual optimizations (threadpools, heap space allocations). As such, it won't take full advantage of a large system with the default deployment.
This document describes the steps necessary to reconfigure GroundWork Monitor Enterprise for large systems. This configuration can be used with systems that have:
- 16 GB or more of memory
- 8 or more processor cores (for bare metal installations - VMWare instances require further consideration - 2 cores will offer better performance)
- The GroundWork disk space requirements for this type of installation do not change significantly
This configuration requires version 7.2.0 and newer. Please do not apply any of these changes to previous releases. It will probably break and won't be supported. |
How It Works
We separate the UI and the backend into separate JVMs, each of which can be given several gigabytes of RAM. Some service ports change so that the two JVMs have their own places to do business.
Requirements
- GroundWork Monitor 7.2.0 installation successfully operating.
- Message preprocessing setup according to the Bookshelf page Preprocessing Log Messages. We suggest the pre-processing of LogMessages by Operation Status for the default views. This reduces load significantly on the PostgreSQL database instance.
- The hardware requirements for this capability are the same or better as described in the overview.
- You need nagios user privilege.
Steps
Installation
Please reserve at least an hour downtime for performing this installation and have all the users logged out of the GroundWork portal. To install on a GroundWork server where the single-instance JBoss AS system is deployed, follow the steps below.
Before you install
|
- SHMMAX SHMALL Kernel parameters - Possibly edit /etc/sysctl.conf to allow shared memory to be assigned up to the amount available in the system. Here we show typical entries which work for a system with 16 GB of RAM, allowing up to 1/2 the RAM to be allocated as shared. Use this as a starting point, remembering that allowing the OS to assign 100% of physical RAM as shared memory will likely cause some performance issues.
# Controls the maximum shared segment size, in bytes kernel.shmmax = 8589934592 # Minimum size of shared memory segment (bytes); one reference says this could be 1, up to a reasonable 256k. We've used 524k without issue, but hey. # This is noted here because one of the Postgres errors calls it out as a possible issue when a new request is "too small" kernel.shmmin = 262144 # Controls the maximum number of shared memory segments, in pages (a page is probably 4096 bytes) kernel.shmall = 2097152
Once this file is edited use the following command to make the changes immediately effective (there are run time methods but we want the changes to be permanent as well as immediate):
sysctl -p
- If you are running remote PostgreSQL Database, then ssh to postgresql server and edit:
/usr/local/groundwork/postgresql/data/postgresql.conf
and change the setting as follows (use 1/4th of your physical memory to determine your shared_buffers):
max_connections = 160 shared_buffers=4096MB
and restart postgresql:
/etc/init.d/groundwork restart postgresql
- Run the installer script as the root user (or user with root sudo rights), and the installer will guide you with the available options:
DO NOT run this script as the nagios user. /usr/local/groundwork/jpp/dual-jboss-installer/install-dual-jboss.sh
Configuration Information (after successfully converting to dual JBoss): - The Foundation HTTP port is moved from 8080 to 8180. Any custom scripts accessing Foundation (via SOAP or REST) via localhost:8080 need to be manually changed to localhost:8180. If accessing via hostname:80 they should be fine.
- Portal log4j config: /usr/local/groundwork/foundation/container/jpp/standalone/configuration/standalone.xml
- Portal logs: /usr/local/groundwork/foundation/container/jpp/standalone/log/framework.log
- Foundation log4j config: /usr/local/groundwork/foundation/container/jpp2/standalone/configuration/standalone.xml
- Foundation logs: /usr/local/groundwork/foundation/container/jpp2/standalone/log/framework.log
- JOSSO log4j config: /usr/local/groundwork/josso-1.8.4/conf/logging.properties
- JOSSO authentication logs: /usr/local/groundwork/josso-1.8.4/logs/catalina.out
- If you have configured SSL or LDAP, it should be working as usual. This installer will not change any of your SSL or LDAP configurations.
Verification
The following command will now show 3 JVMs running: 2 JBoss instances, and 1 Tomcat instance.
ps -ef | grep java
Uninstall
If you want to revert back to single-instance JBoss AS configuration, go to the folder where you have saved the 7.2.0.single-jboss.backup.tgz file and run the following commands sequentially:
/etc/init.d/groundwork stop
tar -xzvf 7.2.0.single-jboss.backup.tgz -C /
mv /usr/local/groundwork/foundation/container/jpp2/standalone/deployments/foundation-webapp.war /usr/local/groundwork/foundation/container/jpp/standalone/deployments/
mv /usr/local/groundwork/foundation/container/jpp2/standalone/deployments/legacy-rest.war /usr/local/groundwork/foundation/container/jpp/standalone/deployments/
rm -rf /usr/local/groundwork/foundation/container/jpp2
rm -rf /usr/local/groundwork/jpp2
sed -i '/foundation-webapp/d' /usr/local/groundwork/nagvis/etc/nagvis.ini.php
find /usr/local/groundwork/ -name "*.rptdesign" -exec sed -i 's/localhost:8180\/foundation-webapp/localhost:8080\/foundation-webapp/g' {} \;
/etc/init.d/groundwork start