我是靠谱客的博主 害怕身影,这篇文章主要介绍Ubuntu18开启redis服务自启动,现在分享给大家,希望可以做个参考。

设置redis服务开机自启动。

1.创建配置文件夹(先切换至root用户)

复制代码
1
2
3
4
mkdir /etc/redis cp /usr/local/redisFile/redis/redis.conf /etc/redis cp /etc/redis/redisFile/redis.conf /etc/redis/6379.conf

2.使用启动脚本

复制代码
1
2
sudo cat /usr/local/redisFile/redis/utils/redis_init_script
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh # # Simple Redis init.d script conceived to work on Linux systems # as it does use of the /proc filesystem. REDISPORT=6379 # 这里为redis的安装目录 EXEC=/usr/local/redisFile/bin/redis-server CLIEXEC=/usr/local/redisFile/bin/redis-cli PIDFILE=/var/run/redis_${REDISPORT}.pid CONF="/etc/redis/${REDISPORT}.conf" case "$1" in start) if [ -f $PIDFILE ] then echo "$PIDFILE exists, process is already running or crashed" else echo "Starting Redis server..." $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" ;; esac

3.将启动脚本复制到/etc/init.d目录下。命名为redisd。

复制代码
1
2
cp /usr/local/redisFile/redis/utils/redis_init_script /etc/init.d

4.注册开启服务

复制代码
1
2
update-rc.d redisd defaults

5.开启服务

复制代码
1
2
3
service redisd start redis-cli

在这里插入图片描述

最后

以上就是害怕身影最近收集整理的关于Ubuntu18开启redis服务自启动的全部内容,更多相关Ubuntu18开启redis服务自启动内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(78)

评论列表共有 0 条评论

立即
投稿
返回
顶部