Errors:
SBL-ADM-60070: Error reported on server ‘Gateway Server’ follows:
SBL-ADM-05012: Could not change value of parameter SessPerSisnConn to 12
SBL-SCC-00029: Setting parameter “SessPerSisnConn” on level “Component” is not supported. Using list params command, check to see if parameter is settable at this level.
SBL-ADM-05012: Could not change value of parameter SessPerSisnConn to 12
SBL-SCC-00029: Setting parameter “SessPerSisnConn” on level “Component” is not supported. Using list params command, check to see if parameter is settable at this level.
Solution:
Above errors occurs when trying to change the parameters default value.
SBL-ADM-05012 indicating the parameter could not be set, it is actually set in-memory but not reflecting in permanent change to the siebns.dat. The correct behavior would be not accepting the change at all.
Because of this, srvrmgr thinks the parameter was successfully set at the server component level when you inquire about the param value. This is the reason of PA_SETLEVEL appearing as ‘Comp Level’ in the list param command, but note the change is not sent to the siebns.dat, which is fine and not expected.
As the change does not actually go to the siebns.dat the previous state can be recovered after a server bounce.
To avoid such situation parameter value should be changed at component definition level.
Below are two possible methods to change the parameter at the component definition level:
Method 1:
set server <Siebel server name>
change param SessPerSisnConn = 1 for compdef eaiobjmgr_enu
Example: set server server1
change param SessPerSisnConn = 1 for compdef eaiobjmgr_enu
Method 2:
change param SessPerSisnConn = 1 for server <server_name> compdef eaiobjmgr_enu
Example: change param SessPerSisnConn = 1 for server server1 compdef eaiobjmgr_enu
No Comments