ISM Manual
  • Overview
  • Features
  • Components
  • Directory Structure
  • Startup/Shutdown
  • ISM Admin UI
    • Dashboard
    • Flow
    • Job
      • Schedule
    • Channel
      • AMQP
      • Mqtt
      • sFTP
    • Interface
      • System
      • Data Structure
      • Field Group
      • Field
    • Web Service
    • Utility
    • Admin
    • Result
  • Tasks
    • Control Task
      • Route
      • Split/Join
      • Mapping
    • FTP
      • FTP Input
      • FTP Output
      • FTP Transfer
    • DB
      • SQL Executor
      • SQL Batch Executor
    • File
      • File Input
      • File Output
      • File Validator
      • Record Extractor
    • Excel
      • Excel Reader
      • Excel Writer
    • Flow
      • Flow Execution
      • Wait Sub
    • Web Service
      • REST Client
      • Web service Client
    • PGP
      • Encrypt
      • Decrypt
    • Cloud
      • SharePoint
      • Amazon S3
      • Google Cloud Storage
    • Others
      • Email Sender
      • LDAP Client
      • Function
      • Script
      • Java Class
  • REST Service
  • Trouble Shooting
  • Logging Configuration
  • Implementing a Task
  • Custom Class
  • Frequently Asked Questions (FAQ)
    • What is XNARUM Integration Service Mastery (ISM)?
    • What is the purpose of XNARUM?
    • Can XNARUM be customized to specific integration requirements?
    • Is XNARUM scalable?
    • Does XNARUM provide support and maintenance?
Powered by GitBook
On this page
  • Process List
  • Start sequence
  • Linux/Unix
  • Windows
  • Shutdown sequence
  • Linux/Unix
  • Windows

Startup/Shutdown

Process List

Current version (3.9) runs these processes.

Name

Description

Wildfly

Main runtime process. ISM service module is running on this process.

Jetty

Admin UI web server

H2

H2 database for cache

Derby

Derby database for cache

RuleCache

Admin process for cache

Start sequence

Linux/Unix

You can start all the processes with this script

$>cd bin
$>./run.sh

Or you can start the processes one by one.

1. Derby and Rule cache

$>cd bin
$>ismadmin pmgr start
    

2. H2

$>cd h2/bin
$>./start.sh
    

3. Wildfly

$>cd wildfly-10.1.0.Final/bin
$>./start.sh
    

4. Jetty

$>cd jetty-9.4.7/bin
$>./jetty.sh start    
    

Windows

1. Derby and Rule cache

$>ismadmin pmgr start
    

2. H2

$>cd h2/bin
$>./start.sh
    

3. Wildfly

$>cd wildfly-10.1.0.Final/bin
$>./start.sh
    

4. Jetty

$>cd jetty-9.4.7/bin
$>./jetty.sh start    
    

Shutdown sequence

Linux/Unix

You can stop all the processes with this script.

$>cd bin
$>./stop.sh

Or you can stop the processes one by one with this order.

1. Jetty

$>cd jetty-9.4.7/bin
$>./jetty.sh stop    
    

2. Wildfly

$>cd wildfly-10.1.0.Final/bin
$>./shutdown.sh
    

3. H2

$>cd h2/bin
$>./stop.sh

4. Derby and Rule cache

$>cd bin
$>./ismadmin pmgr stopall    
    

Windows

PreviousDirectory StructureNextISM Admin UI

Last updated 1 year ago