赞
踩
我们假设redis正在运行,但是我们找不带redis的配置文件redis.conf.
正确的示范:
(1)systemctl status redis
● redis.service - LSB: starts Redis
Loaded: loaded (/etc/rc.d/init.d/redis; bad; vendor preset: disabled)
Active: inactive (dead)
Docs: man:systemd-sysv-generator(8)
由此处可见,redis在/etc/rc.d/init.d/redis中
(2)cat/etc/rc.d/init.d/redis
#!/bin/sh
# chkconfig: 2345 56 26
# description: Redis Service
### BEGIN INIT INFO
# Provides: Redis
# Required-Start: $all
# Required-Stop: $all
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: starts Redis
# Description: starts the BT-Web
### END INIT INFO
# Simple Redis init.d script conceived to work on Linux systems
# as it does use of the /proc filesystem.
CONF="/www/server/redis/redis.conf"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。