配置redis开机自启动(修改redis开机启动)

Redis是一种高性能的内存数据库,其程序能够被设置为开机自启动。

安装完成后,有几种不同的方法可以让Redis开机自动启动。这里介绍Ubuntu系统下如何配置Redis开机自启动。

一、安装完Redis后,找到redis.conf文件,Ubuntu系统的路径在:

/etc/redis/redis.conf

二、使用vim工具打开redis.conf文件,将supervised选项设置为systemd

# If you run Redis from upstart or systemd, Redis can interact with your
# supervision tree. Options:
# supervised no - no supervision interaction
# supervised upstart - signal upstart by putting Redis into SIGSTOP mode
# supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET
# supervised auto - detect upstart or systemd method based on
# UPSTART_JOB or NOTIFY_SOCKET environment variables
# Note: these supervision methods only signal "process is ready."
# They do not enable continuous liveness pings back to your supervisor.
supervised systemd

三、完成上述配置后,使用systemctl帮助Redis自启动,如下所示:

systemctl enable redis

再检查Redis服务状态,如下所示:

systemctl status redis

此时应会显示Redis服务是 active(running)的,则说明Redis的开机自启动配置完成。

再重启系统,开机时Redis服务即可自动启动。

配置Redis开机自启动需要注意几点,例如检查redis.conf配置文件的supervised选项设置为systemd;使用systemctl enable redis命令加载并启动Redis服务;最后重启系统,开机自行检查Redid服务状态,看看是否能够正常启动、运行。


数据运维技术 » 配置redis开机自启动(修改redis开机启动)