5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

カーネルパニックを起こしたら設定秒数後に自動的に再起動

Posted at

rootユーザにて作業の必要あり。
CentOS6.4では、kernel.panicの記述がなかった。追記する作業をしました。

sysctl kernel.panic

とコマンドを入力

kernel.panic = 0

といったレスポンスがあった場合、カーネルパニックが起きても自動的に再起動する設定が入っていない。

cat /etc/sysctl.conf|grep kernel.panic

とコマンドを入力

レスポンスがカラだったらやっぱり入っていない。この場合だとカーネルパニック後30秒で再起動。

echo "kernel.panic = 30" >> /etc/sysctl.conf

とコマンドを入力

sysctl -p

とコマンドを入力して、設定を反映させる。

sysctl kernel.panic

とコマンドを入力して、設定を確認。

kernel.panic = 30

とレスポンスがあったら成功。カーネルパニック後30秒で再起動するようになる。

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?