Skip to content

Instantly share code, notes, and snippets.

@samuelcastle
Last active January 16, 2017 18:10
Show Gist options
  • Save samuelcastle/c5e71cf5387679bb526c6373581e27d3 to your computer and use it in GitHub Desktop.
Save samuelcastle/c5e71cf5387679bb526c6373581e27d3 to your computer and use it in GitHub Desktop.

The linux and webMethods cheat sheet

This gist provides an overview of usefull commands for working with webMethods on linux.

webMethods IS

Lifecycle management

$ /opt/softwareag/profiles/IS_default/bin/sagis912 help
$ /opt/softwareag/profiles/IS_default/bin/sagis912 start
$ systemctl status sag*

Viewing log files

$ tail -f /opt/softwareag/IntegrationServer/instances/default/logs/server.log
$ tail -n 20 /opt/softwareag/IntegrationServer/instances/default/logs/server.log

firewall config

Following commands are red had linux based

Lifecycle management

Check status

$ systemctl status firewalld

Stop & start firewall

$ service firewalld stop
$ service firewalld start

Disable firewall

$ service firewalld disable

Port configuration

$ firewall-cmd --zone=public --add-port=[port]/tcp --permanent
$ firewall-cmd --reload

SAG default ports

Name Port Description
IS primary port 5555 IS default port
IS diagnostic port 9999
Command Central HTTP port 8090
Command Central HTTPS port 8091
Platform Manager HTTP port 8092
Platform Manager HTTPS port 8093
Process Performance Manger Load balancer port 4080
Process Performance Manger Load balancer SSL port 4443
My webMethods Server 8585
Universal Messaging NHP port 9000
tsa-port 9510 Terracotta server array port
jmx-port 9520 Terracotta server jmx
tsa-group-port 9530 Terracotta server group port
management-port 9540 Terracotta server management port

SAG default urls

Process Performance Manager URL | http://:4080/ppm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment