设置自启动配置文件

在Redis安装路径(就是上一步make的路径)之下,找到utils目录,其中有个redis_init_script文件。将其作为自启动配置文件。如图。


ubuntu redis 命令大全 ubuntu redis启动_ubuntu redis 命令大全

将redis_init_script文件重新命名为redisd,作为系统启动服务名(以d结尾表示是自启动服务,约定俗成)。

修改redisd文件,注意要在文件头部加上两句注释来设定该服务的运行级别:


[html]  view plain  copy

1. #!/bin/sh  
2. # chkconfig:   2345 90 10

文件正文部分参照:


[html]  view plain  copy

1. REDISPORT=6379  
2. EXEC=/usr/local/bin/redis-server  
3. CLIEXEC=/usr/local/bin/redis-cli  
4.   
5. PIDFILE=/var/run/redis_${REDISPORT}.pid  
6. CONF="/etc/redis/${REDISPORT}.conf"



其中,6379是redis端口号;CONF是redis配置文件,将在下一步设置;EXEC、CLIEXEC是服务所在路径,在上步make install时,已经放入默认路径/usr/local/bin中,如图:


ubuntu redis 命令大全 ubuntu redis启动_redis_02

步骤4:设置Redis配置文件

在redis安装目录下,找到redis.conf文件,如图


ubuntu redis 命令大全 ubuntu redis启动_配置文件_03

将这个文件复制到 /etc/redis 目录,并改名为“6379.conf”,然后修改此文件内容。

设置daemonize为yes,使服务可以后台运行:


[html]  view plain  copy

1. daemonize yes


设置log文件路径:


[html]  view plain  copy

1. logfile /var/log/redis/redis-server.log



设置持久化文件存放路径:


[html]  view plain  copy

1. dir /var/lib/redis



修改完成后如图所示:


ubuntu redis 命令大全 ubuntu redis启动_ubuntu redis 命令大全_04

步骤5:执行开机自启动命令

执行:


[html]  view plain  copy

1. sudo chmod +x /etc/init.d/redisd



然后执行:


[html]  view plain  copy

1. sudo update-rc.d redisd defaults


注意,这两处的redisd就是步骤3中修改的自启动配置文件名


至此,redis安装并配置完成。

附:常用redis命令

启动Redis服务可以执行:


[html]  view plain  copy

1. service redisd start



关闭服务:


[html]  view plain  copy

1. service redisd stop


重启服务:


[html]  view plain  copy

1. service redisd restart



在控制台中进入redis客户端:


[html]  view plain  copy

1. redis-cli



测试redis:


[html]  view plain  copy

1. ping


返回pong说明成功,如图:


ubuntu redis 命令大全 ubuntu redis启动_redis_05