我下载了 redis-2.6.16.tar.gz 文件,安装成功,安装后运行 src/redis-server 工作正常。
但我不希望每次都手动运行 src/redis-server,而是希望 redis-server 作为后台进程连续运行。
到目前为止,在安装之后,我做了以下任务:
1. vim redis.conf 和我改为
# By default Redis does not run as a daemon. Use 'yes' if you need it.
# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
daemonize yes
但结果和我发现的一样,我做错了什么?
重排后在后台运行。我将运行 juggernaut 也作为后台进程与以下命令。
nohup node server.js
但我不能使重复运行在后台。请提供一些解决方案。