Linux fork: 再試行: リソースが利用できないため、ログインの解決策にならない
2022-02-25 20:13:04
//The problem occurs because the maximum number of connections to the Linux open file is too full to meet the demand, the solution is as follows
//Improve the original 1024 to 65535
# cat /etc/security/limits.d/90-nproc.conf
# Default limit for number of user's processes to prevent
# accidental fork bombs.
# See rhbz #432903 for reasoning.
* soft nproc 65535
root soft nproc unlimited
//Solution 2, reboot the machine to fix it
# echo "* - nofile 65535" >> /etc/security/limits.conf
# echo "* - noproc 65535" >> /etc/security/limits.conf
///* means for all users, noproc is the maximum number of processes, nofile is the maximum number of open files
//- means soft and hard all limits
# Default limit for number of user's processes to prevent
# accidental fork bombs.
# See rhbz #432903 for reasoning.
* soft nproc 65535
root soft nproc unlimited
//Solution 2, reboot the machine to fix it
# echo "* - nofile 65535" >> /etc/security/limits.conf
# echo "* - noproc 65535" >> /etc/security/limits.conf
///* means for all users, noproc is the maximum number of processes, nofile is the maximum number of open files
//- means soft and hard all limits
関連
-
Reactネイティブの開発で遭遇するいくつかのポットホール
-
AS ERROR: x86 エミュレーションは現在ハードウェアアクセラレーションが必要です!
-
Pythonのsort関数とsorted関数の違いとpythonのエラーについて。AttributeError: 'list' オブジェクトに 'sorted' 属性がない 理由
-
ModuleNotFoundError を解決する。Pythonに'tensorflow._api'という名前のモジュールはありません。
-
OverflowError: Python 2.7 で C の long に変換するには Python の int が大きすぎる。
-
C++で'atoi'がこのスコープで宣言されていない問題を解決するにはどうしたらいいですか?
-
Pythonラーニングノートです。TypeError: cannot use a string pattern on a bytes-like object とその解決法
-
django+uwsgi+nginxプロジェクトをubuntu環境に展開し、上流の早期接続切断のエラーを解決することができる。
-
numpy.concatenate merge matrix エラー ValueError: すべての入力配列は同じ次元数でなければなりません。
-
ansible error resolution:UNREACHABLE sshでホストへの接続に失敗しました。
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
android refactoring exceptionAndroid リソースリンクの失敗
-
undefined[エラー] 'delete' の前に未修飾の ID が必要です。
-
fatal: リモートが見つからなかった refs/heads/cm-13.0
-
自動配線された依存関係のインジェクションに失敗した 解決方法
-
javaは起動したが、終了コード=-805306369を返した。
-
警告 基数パラメータradixの欠落:基数パラメータradixの欠落
-
pythonのpandas_datareaderパッケージの紹介
-
id 'com.android.library' を持つプラグインが見つかりません。
-
Pythonの問題:SyntaxError:単一のステートメントをコンパイルする際に複数のステートメントが検出される
-
关于Uncaught TypeError: Cannot read property 'toLowerCase' of undefined的问题