今天在某一台大陸的所租用的雲端主機上在 secure 看到錯誤訊息
pam_limits(crond:session): unknown limit item 'noproc'
每有一個 User 登入就出現一個 session limits 的錯誤訊息表示不認得 noproc
在 Linux limit 多數應該都在 /etc/security/limits.conf 這隻設定檔。
$ vim /etc/security/limits.conf # End of file *soft noproc65535 *hard noproc65535 *soft nofile65535 *hard nofile65535
發現設定的值都是 noproc,一開始還沒發現異狀,不看還好一看覺得瞎
#- nproc - max number of processes
如果要 limit processes 使用的參數是 nproc
拿著 “linux noproc” 的關鍵字拿去餵 Google 發現在大陸的許多教學文章以及一些重製過的 ISO 都是使用 noproc 的參數
不曉得是哪邊起的頭開始的錯誤,然後大家瘋狂的複製貼上在 Internet 導致許多人效仿?
雖然 Internet 神通廣大,但是也充斥著大量的錯誤,當要應用於自己負責的項目的時候更要深入的研究與驗證是否適合或者錯誤。