Consultor Eletrônico



Kbase 34152: How to configure database server to use 2 network cards
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   5/10/1998
Solution ID: P4152

GOAL:

How to configure database server to use two network cards for two login brokers?

FACT(s) (Environment):

Progress 8.X
Progress 9.X

FIX:

Two distinct hostnames and IP addresses need to be added to the host file for each NIC card:

Example:
ip_address_1 hostname1
ip_address_2 hostname2

Two distinct entries in services file also need to be made.

Example:
db_service_1 portnumber1/tcp
db_service_2 portnumber2/tcp

Starting primary broker:
proenv>proserve dbname -H hostname1 -N tcp -S db_service_1
PROGRESS Version 8.3E as of Thu Nov 15 12:55:05 EST 2001
14:15:22 SERVER : This broker will terminate when session ends. (5405)
14:15:22 BROKER 0: Multi-user session begin. (333)
14:15:22 BROKER 0: Started for db_service_1 using tcp, pid 868. (5644)

Starting secondary broker:
proenv>proserve dbname -H hostname2 -N tcp -S db_service_2 -m3
PROGRESS Version 8.3E as of Thu Nov 15 12:55:05 EST 2001
14:16:51 BROKER 3: Started for db_service_2 using tcp, pid 1420. (5644)
14:16:51 BROKER 3: This is an additional broker for this protocol. (5645)

When -H hostname1 -S db_service_1 has been used from client - NIC#1 has been used
when -H hostname2 -S db_service_2 has been used from client - NIC#2 has been used