Create or modify a host - connect_cdc_mimix_share - Latest

Connect CDC System Reference Guide

Product type
Software
Portfolio
Integrate
Product family
Connect
Product
Connect > Connect CDC (MIMIX Share)
Version
Latest
Language
English
Product name
Connect CDC
Title
Connect CDC System Reference Guide
Copyright
2024
First publish date
2003
Last edition
2024-08-20
Last publish date
2024-08-20T21:40:14.000381

Usage

Creates or modifies a host, that is, a computer connected to a TCP/IP network. A host has a unique IP address and has Connect CDC executable files installed. The IP address does not need to be specified, if the host can be accessed via DNS (Domain Name Service) on the network.

Syntax
CREATE HOST host-label
Or   ALTER HOST host-label TO
PORT port-number
MACHINE machine-name
[IP address]
[DATAPORT dport-number]
[[NOT] XMLLOCAL]
[SOCKETS {STANDARD|MODEL|SSL}]
[PLATFORM_TYPE {Windows|Unix|Linux|OS400}]
[description ‘descriptive text’]
;

Parameter

Parameter

Description

Default Values

PORT

Port number used by Connect CDC Listener.

Value used as set in the omnient.ini

MACHINE

Network name of the host; should be found in the DNS, or the IP address.

 

IP

Alternate IP address.

 

DATAPORT

Preassigned Data port number. Commonly used when replicating data through a firewall.

 

XMLOCAL

Store the XML files at this host.

Value is not set

SOCKETS

Type of socket connect to make to this host:

  • STANDARD–standard sockets, no SSL

  • MODEL–type specified in model default sockets access

  • SSL–Connect CDC uses secure socket layer (SSL), Java classes for encrypted communications. The protocols used are compliant with Transport Layer Security (TLS) 1.2 and include 256 bit cipher suites.

MODEL

PLATFORM_TYPE

Type of host operating system. Valid values are:

  • Unix

  • Linux

  • OS400

  • Windows

Windows

description

Quoted descriptive text.

 

Example
CREATE HOST "AIX-Host"
PORT 50007
DATAPORT 50008
MACHINE "js23-32"
IP "10.24.40.98"
XMLLOCAL
SOCKETS SSL
PLATFORM_TYPE Unix
description 'Unix Source system running Oracle 12c';
Changing just the DATAPORT and SOCKETS setting for the above HOST
ALTER HOST "AIX-Host" TO
DATAPORT 50009
SOCKETS MODEL;