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.
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:
|
MODEL |
PLATFORM_TYPE |
Type of host operating system. Valid values are:
|
Windows |
description |
Quoted descriptive text. |
|
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;