Operating System - HP-UX
1757116 Members
2224 Online
108858 Solutions
New Discussion юеВ

modify nice value for a process id

 
SOLVED
Go to solution
John Ferro
Regular Advisor

modify nice value for a process id

Hello,

I have "I have "ia64 hp superdome server SD64B", requested to modify nice value for process id so it can utlize highest resources for these processes (Oracle). How i could modify them. I mean what command to modify with process ID?

Regards,
4 REPLIES 4
Torsten.
Acclaimed Contributor
Solution

Re: modify nice value for a process id

Not sure what processes we are talking about, maybe they are stopped and started with each request, so a manual "nice" would not really help you at all.
Maybe this can help you:

http://h20338.www2.hp.com/enterprise/w1/en/os/hpux11i-prm-overview.html

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Dennis Handly
Acclaimed Contributor

Re: modify nice value for a process id

If you are starting a process, you can use nice(1).
If the process already exists, you can use renice(1).
renice -n your-new-priority PID
Kapil Jha
Honored Contributor

Re: modify nice value for a process id

http://amath.colorado.edu/computing/software/man/nice.html
A simple page :)
BR,
Kapil+
I am in this small bowl, I wane see the real world......
John Ferro
Regular Advisor

Re: modify nice value for a process id

Thanks,