2023年7月26日发(作者:)
Linux下Redis设置密码及开机⾃启动1、设置中daemonize为yes,确保守护进程开启; 找到#requirepass foorbared这⼀⾏,直接替换掉这⾏,改为requirepass 新密码2、编写开机⾃启动脚本vi /etc/init.d/redis脚本内容如下:#!/bin/sh#chkconfig: 2345 80 90# Simple Redis init.d script conceived to work on Linux systems# as it does use of the /proc ORT=6379EXEC=/usr/local/bin/redis-serverCLIEXEC=/usr/local/bin/redis-cliPIDFILE=/var/run/redis_${REDISPORT}.pidCONF="/etc/redis/${REDISPORT}.conf"case "$1" in start) if [ -f $PIDFILE ] then echo "$PIDFILE exists, process is already running or crashed" else echo "Starting " $EXEC $CONF fi ;; stop) if [ ! -f $PIDFILE ] then echo "$PIDFILE does not exist, process is not running" else PID=$(cat $PIDFILE) echo "Stopping ..." $CLIEXEC -p $REDISPORT shutdown while [ -x /proc/${PID} ] do echo "Waiting for Redis to shutdown ..." sleep 1 done echo "Redis stopped" fi ;; *) echo "Please use start or stop as first argument" ;;esac3、写完后保存退出4、设置权限chmod 755 redis5、启动测试/etc/init.d/redis start6、连接测试redis-cli -a 新密码 -p 63797、设置开机⾃启动chkconfig redis on以上所述是⼩编给⼤家介绍的Linux下Redis设置密码及开机⾃启动,希望对⼤家有所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。在此也⾮常感谢⼤家对⽹站的⽀持!
发布者:admin,转转请注明出处:http://www.yc00.com/web/1690379826a340729.html
评论列表(0条)