Skip to content

VMS Agents Configuration

If the origin system is OpenVMS, the Snapshot Agent and Message Brokers that run on VMS must be configured using the VmsAgent property in MasterConfig.json.

Configuration Properties

Property Type Description
ZmqRouter Object
OfflineFilePath String
ClusterVotePath String
SnapshotVotePath String
OutputFile String
S3 Object

Example Configuration

{
  "VmsAgent": {
    "ZmqRouter": {
      "Nodes": [
        {
          "Host": "localhost",
          "Port": 5000
        }
      ],
      "TargetIpc": "tcp://*:5555",
      "MonitorEnabled": false
    },
    "OfflineFilePath": "SIP_DAT:OFFLINE_RECORDS.ISM",
    "ClusterVotePath": "SIP_DAT:CLUSTER_VOTE.ISM",
    "SnapshotVotePath": "SIP_DAT:SNAPSHOT_VOTE.ISM",
    "OutputFile": "SIP_DAT:snapshot",
    "S3": {
      "Region": "us-west-2",
      "Server": "localhost",
      "Port": 9000,
      "Path": "s3",
      "ConsolePort": 0,
      "UseSsl": true,
      "Bucket": "development",
      "Id": "admin",
      "Key": "p@ssw0rd"
    }
  }
}