0
0

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 3 years have passed since last update.

ゾンビプロセス(笑)に悩まされた件

Last updated at Posted at 2020-05-03

ことの始まり

Railsで開発をしていてRedisを使ってみた。

1日目は正常にタスクが終わっていたのに、
その次の日にログインするとなぜか起動もしていないのにRedisが起動してた。

Dockerのコンテナに開発してたものを乗せるために作業をしてたら、
使いたいポートがRedisに専有されていて立ち上がらないww

とりあえずRedisを一回Killコマンドで殺そうとおもって、
Killしたけどよみがえってくるじゃん!
Redisをアンインストールしてもだめだし「どうなってんのこれ??」状態
これが噂のゾンビプロセスか???

原因

いつの間にか自動起動設定がONになっていたこと。

解決法

以下のコマンドでサービスをストップして自動起動設定をOFFにしたら解決しました。

bash
systemctl stop redis
systemctl disable redis

まとめ

同期に相談して見事に解決しました。
同期に本当に感謝します!
こんなことで悩むなんて思いもしませんでした。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?