一步一步教你如何轻松自动启动Redis库(怎么自动启动redis库)
随着日常的应用程序越来越复杂,在一天工作完毕后,我们必须手动启动数据库(如Redis),以调用和加载数据,否则无法使用它。这尤其痛苦的,所以让我们看看如何使用部署脚本来自动化运行Redis库,而无需再担心写入或读取数据。
要想开启自动启动,我们需要编写一个启动脚本来加载Redis模块,将Redis实例添加到开机自启动时执行的服务列表中。脚本需要在/etc/rc.d/init.d目录下存放,文件名可以任意取,例如startRedis.sh
#!/bin/bash
# chkconfig: 5 91 19
# description: Start redis
# This will load redis module and add Redis instance to a
# list of services that will be started automatically on server boot.
cd /etc/rc.d/init.d
#loadredis
/usr/local/bin/redis-server /usr/local/etc/redis.conf
#add to rc.d
chkconfig –add startRedis.sh
在以上脚本中,cd指令被用于更改脚本执行所在的目录,/usr/local/bin/redis-server被用于加载Redis模块,/usr/local/etc/redis.conf指定配置文件,chkconfig –add startRedis.sh让systemd监控到我们的脚本以自动启动Redys实例,每次计算机重启时都将自动启动。
要让部署脚本起作用,必须使用最高权限执行,输入以下指令:
sudo chmod +x startRedis.sh
sudo ./startRedis.sh
使用这种方式,我们就可以自动启动Redis库,只需一次设置,并始终保持Redys实例于此服务器上运行。