1. Install Apache ActiveMQ 5.7 2. Go to ActiveMQ /bin [cd activemq_install_dir/bin] 3. Provide permission ActiveMQ [chmod 755 activemq] 4. Start Active MQ [activemq start] 5. Copy PEGA_SNMP project folder to destination folder in destination (/app/pega for Server 1 and Server 2) 6. contains client and server folders inside 7. Now configure server/conf/application.properties file with below parameters JOB_START_TIME = 11:45 (any scheduler start time) PEGA_INSTANCES = 6 (Number of PEGA instances) # PEGA_INSTANCE_ is instance name for the specified number PEGA_INSTANCE_1 = sarypgapp1_ms1 (pega instance 1 name) PEGA_INSTANCE_2 = sarypgapp1_ms2 (pega instance 2 name) PEGA_INSTANCE_3 = sarypgapp1_ms3 (pega instance 3 name) PEGA_INSTANCE_4 = sarypgapp2_ms1 (pega instance 4 name) PEGA_INSTANCE_5 = sarypgapp2_ms2 (pega instance 5 name) PEGA_INSTANCE_6 = sarypgapp2_ms3 (pega instance 6 name) # PEGA_INSTANCE log directory LOG_DIR1= /pega_logs_dir LOG_DIR2= /pega_logs_dir LOG_DIR3= /pega_logs_dir LOG_DIR4= /pega_logs_dir LOG_DIR5= /pega_logs_dir LOG_DIR6= /pega_logs_dir # DB Connection DB.DRIVER= oracle.jdbc.driver.OracleDriver DB.USER=USER DB.PASS=xxx DB.URL=jdbc:oracle:thin:@X.X.X.X:1521:SID 8. Now configure server/conf/jndi.properties file # use the following property to configure the default connector java.naming.provider.url = tcp://X.X.X.X:61616 (ActiveMQ IP: PORT) ** ActiveMQ IP will be physical IP of server 1/server 2 9. Now start server - Run startPegaSNMP.sh for starting the server 10. Now go to client folder and configure alarm-mapping.properties inside /conf folder Change the below properties to SNMP ITNMS IP and PORT for trap receiver server.ip = X.X.X.X server.port=8162 11. Update conf/ consumer.properties and change the below property # Active MQ server will be installed in 1 Physical server, provide that IP DEFAULT_BROKER_URL = tcp://:61616 ** ACTIVEMQ_SERVER_IP is the physical IP of server 1/server 2 12. Start client for sending traps to ITNMS Run startPegaMQClient.sh for starting the client [Dir: client]