Kbase P24369: What does -ServerType parameter do ?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  26/02/2010 |
|
Status: Verified
GOAL:
What does -ServerType parameter do ?
GOAL:
How to use proserve to start a SQL-92 only broker.
GOAL:
How to use proserve to start a 4GL only broker.
FACT(s) (Environment):
Progress 9.1D
Progress 9.1E
OpenEdge 10.X
All Supported Operating Systems
FIX:
-ServerType is a new database startup parameter introduced in Progress 9.1D. It used to create/start a dedicated broker for 4GL or SQL connections. It accomplishes this by limiting the type of remote server processes the broker can spawn.
Example:
To specify a 4gl only broker:
proserve dbname -S <value4gl> -ServerType 4GL -n 200 -Mn 29 -Mpb 18 -Mi 5 -Ma 10
To specify a SQL only broker:
proserve dbname -S <valuesql> -ServerType SQL -Mpb 10 -Mi 2 -Ma 2 -m3
The above settings are able to handle 200 users, 18 remote 4GL servers (each 4GL remove server is able to handle 10 remote 4GL clients), 10 SQL92 servers (each SQL92 server is able to handle 2 SQL92 clients).