1753771 Members
4521 Online
108799 Solutions
New Discussion юеВ

Re: Oracle Installation

 
SOLVED
Go to solution
Grayh
Trusted Contributor

Oracle Installation

What should I do to avoid the below messages

I am not sure which kernal parameters to change

Checking kernel parameters
Checking for ksi_alloc_max=32768; found ksi_alloc_max=33600. Passed
Checking for max_thread_proc=256; found max_thread_proc=256. Passed
Checking for maxdsiz=1073741824; found maxdsiz=1073741824. Passed
Checking for maxdsiz_64bit=2147483648; found maxdsiz_64bit=4294967296. Passed
Checking for maxssiz=134217728; found maxssiz=8388608. Failed <<<<
Checking for maxssiz_64bit=1073741824; found maxssiz_64bit=268435456. Failed <<<<
Checking for maxswapchunks=16384; found no entry. Failed <<<<
Checking for maxuprc=3687; found maxuprc=256. Failed <<<<
Checking for msgmap=4098; found msgmap=1026. Failed <<<<
Checking for msgmni=4096; found msgmni=512. Failed <<<<
Checking for msgseg=32767; found msgseg=8192. Failed <<<<
Checking for msgtql=4096; found msgtql=1024. Failed <<<<
Checking for ncsize=34816; found ncsize=8976. Failed <<<<
Checking for nfile=63488; found nfile=65536. Passed
Checking for nflocks=4096; found nflocks=4096. Passed
Checking for ninode=34816; found ninode=4880. Failed <<<<
Checking for nkthread=7184; found nkthread=8416. Passed
Checking for nproc=4096; found nproc=4200. Passed
Checking for semmap=4098; found no entry. Failed <<<<
Checking for semmni=4096; found semmni=2048. Failed <<<<
Checking for semmns=8192; found semmns=4096. Failed <<<<
Checking for semmnu=4092; found semmnu=256. Failed <<<<
Checking for semvmx=32767; found semvmx=32767. Passed
Checking for shmmax=1073741824; found shmmax=1073741824. Passed
Checking for shmmni=512; found shmmni=400. Failed <<<<
Checking for shmseg=120; found shmseg=300. Passed
Checking for vps_ceiling=64; found vps_ceiling=16. Failed <<<<
Check complete. The overall result of this check is: Failed <<<<
7 REPLIES 7
Ganesan R
Honored Contributor
Solution

Re: Oracle Installation

Hi Grayh,

Oracle needs some of the kernel parameters needs to be set as per its requirements to work perfectly. So before you install you will have tune all the necessary parameters as per oracle requirements.

All the details will be there in oracle installation guide.

Your installation errors are clearly showing that those kernel values didn't met it's requirement. Tune those as per installation guide and proceed with installation.

Best wishes,

Ganesh.
Cesare Salvioni
Trusted Contributor

Re: Oracle Installation

Hi
In my experience you must agree to all the check that oracle request, so basically you must change all the given kernel parameters, except for the maxswapchuncks which is missing on newest HPUX release and deal only with maximum amount of configurable swap.

Other parameters deal with process memory allocation, ipc (semaphores, shared memory and message queues) and files: minimum request from oracle must be satisfied, that's all :)

hope it help
Grayh
Trusted Contributor

Re: Oracle Installation

Checking for maxswapchunks=16384; found no entry. Failed <<<<

Is that a way i can add the above to the Kernel as it is missing.. If so plz give the command
Cesare Salvioni
Trusted Contributor

Re: Oracle Installation

there should be no need for it, really don't know if you can cheat the system making it seems a parameter exists.
Is oracle only warning and complaining or really the installation doesn't work?
In first case DO REALLY NOT WORRY AND GO ON

see also this forum thread
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1184462

Re: Oracle Installation

You can create "forged" kernel tunables to get around these sorts of things using "kctune -u"

kctune -u maxswapchunks=16834

Should do it

Althouh I thought in the Oracle installer you could choose to ignore these warnings and continue anyway

If this is 11iv3, then to set all the other parameters appropriately for Oracle, you could just install Tune-N-Tools from here:

http://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=Tune-N-Tools

And then just run:

tunserver -o

HTH

Duncan

I am an HPE Employee
Accept or Kudo

Re: Oracle Installation

oops

that should have been:

tuneserver -o

HTH

Duncan

I am an HPE Employee
Accept or Kudo
Grayh
Trusted Contributor

Re: Oracle Installation

Thanks every one...