R
Rob Fitzpatrick
Guest
The number you see in the showcfg output is the user count you have licensed. This count is not enforced in any way in the software. The number of remote connections allowed depends on the values of the client/server-related database broker startup parameters. -n: number of connections allowed. This is not a client/server parameter but it sets a limit to the total number of database connections allowed. -Mn: maximum servers. This is the total number of servers and secondary brokers allowed. -Mpb: maximum servers per broker (broker-specific). The maximum number of servers a particular broker can spawn. -Ma: maximum clients per server (broker-specific). -Mi: minimum clients per server (broker-specific). -minport: low end of range of dynamic server ports (broker-specific). -maxport: high end of range of dynamic server ports (broker-specific). Barring conflicts or incorrectly-tuned parameters, the number of remote clients you can connect through a given connection broker is the product of maximum servers (-Mpb) and maximum clients per server (-Ma). Sum those products for all connection brokers and that is the maximum count of remote clients for the database.
Continue reading...
Continue reading...