本文主要是介绍Linux上调整sshd进程的优先级,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用命令renice
#先查看sshd的优先级
[root@xj ~]# ps axo pid,command,nice|grep sshd
869 /usr/sbin/sshd -D 0
1194 sshd: root@pts/0 0
1307 sshd: root@pts/1 0
1574 sshd: root@pts/2 0
#设置sshd的优先级为-20
[root@xj ~]# renice -n -20 869
869 (进程 ID) 旧优先级为 0,新优先级为 -20
#再次查看sshd的优先级
[root@xj ~]# ps axo pid,command,nice|grep sshd
869 /usr/sbin/sshd -D -20
1194 sshd: root@pts/0 0
1307 sshd: root@pts/1 0
1574 sshd: root@pts/2 0
#一定要退出终端重新连接
[root@xj ~]# exit
登出
#再检查,就可以看到当前终端的优先级变化了
[root@xj ~]# ps axo pid,command,nice|grep sshd
869 /usr/sbin/sshd -D -20
1194 sshd: root@pts/0 0
1574 sshd: root@pts/2 0
2361 sshd: root@pts/1 -20
同理也可以针对其它进程,调整优先级
这篇关于Linux上调整sshd进程的优先级的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!