106
87

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.

Redisの起動と停止

Posted at

##redisサーバの起動
$redis-server

##クライアントの起動
$redis-cli
ここでいろいろ操作できる

##終了
redis-cliから
$shutdown

※Ctrl + Cでも停止できるけど、メモリに残っているデータは消える

##サーバが裏側で動いているとき
サーバを立ち上げようとして、
[90750] 13 Nov 18:47:25.610 # Creating Server TCP listening socket *:6379: bind: Address already in use
のエラーが出ることがある

→既にそのアドレスは使われている(既にサーバが立ち上がっている)

###確かめる
redis-cli ping
→pong が返ってきたらredisが動いている

$redis-cli shutdown
で停止することができる

106
87
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
106
87

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?