如何在后台运行Redis?

时间:2015-07-24 12:25:06

标签: redis

我在处理特定代码库时需要运行Redis。我经常打开一个新终端并在那里运行它。我怎样才能在后台运行它?

3 个答案:

答案 0 :(得分:32)

使用redis-server &

在Linus或OSX上,在后台运行流程的简便方法是follow the command with &

您可以看到它仍在使用ps -ef | grep redis(或pgrep redis-server),并使用pkill redis-server停止播放。

答案 1 :(得分:25)

或运行以下

/usr/local/bin/redis-server --daemonize yes

答案 2 :(得分:8)

我知道这是一个老问题,但我只是在回答这个问题。

您需要在redis.conf中设置daemonize yes daemonize no

参考:https://blog.art-coder.com/2011/12/01/how-to-run-redis-server-as-daemon/