Linux, make your processes play “nice”
Ever run into a problem where one program on your server starts using up all the cpu? Make that process be "nicer" to the rest of the running programs. Each running process has a nice value, essentially a priority for who gets more of the cpu time. You will need the process id of the process you want to be nicer, you can get that using the nifty "ps" command. After you do that, renice that process with a command like renice +15 -p <process_id> The nice priority works in reverse of how a re... read more!
Posted in server administration | Post Comment

RSS Feed