Hi!
Check the Kernel parameters recomendations at the $INFORMIXDIR/release/en_us/0333/IDS_7.3 file
You also may need to tune the NETTYPE parameter in your ONCONFIG file (look at the Informix manuals).
NOTE:
=====
In SCO OpenServer 5.0.x there is no "/etc/system" file to tune the kernel ...
You must tune the kernel parameters with /etc/conf/bin/idtune (man ADM idtune), build the new kernel with /etc/conf/cf.d/link_unix (man ADM link_unix) and the reboot to activate the new kernel. For example:
(on the console, login as root an go to single-user mode ...)
cd /etc/conf/cf.d
../bin/idtune SHMMIN 1
../bin/idtune SHMSEG 6
../bin/idtune SEMMNI -2048 -MAX 8192
...
...
...
./link_unix -y
shutdown -y -g0 -i6
Hope this helps.
Vitorino
Quote:
Originally posted by tn5353
Check couple things before you go any further.
1. The system message file to see is there any not enough shared memory allocation... This is always happening.
2. Conflict setting in the host and the services.
3. make sure you have the following shared memory setting:
forceload:sys/semsys
forceload:sys/shmsys
set shmsys:shminfo_shmmax=4294967295
set shmsys:shminfo_shmmin=1
set shmsys:shminfo_shmmni=100
set shmsys:shminfo_shmseg=100
set semsys:seminfo_semaem=16384
set semsys:seminfo_semmap=64
set semsys:seminfo_semmni=4096
set semsys:seminfo_semmns=4096
set semsys:seminfo_semmnu=4096
set semsys:seminfo_semmsl=110
set semsys:seminfo_semopm=100
set semsys:seminfo_semume=64
set semsys:seminfo_semusz=96
set semsys:seminfo_semvmx=32767
Good Luck
|