REDIS文件将在./etc文件夹路径上删除



我在./etc下意外删除了redis文件,现在我似乎无法连接到redes服务。无论如何,我可以重新安装Redis吗?如果是这样?请帮我。预先感谢

hm ...似乎是'/etc'。

您可以手动构建和安装。它在https://redis.io/download#installation中进行了描述。

或通过软件包管理器重新安装软件包,例如 yum - 如果软件包管理器安装了redis。

$ yum --enablerepo=epel,remi reinstall redis

但是,在您的情况下,我认为如果您制作a/etc/redis/*诸如redis.conf之类的文件可以。这是一个脚本运行示例,安装了redis版本为3.2.8,默认设置。

$ wget http://download.redis.io/releases/redis-3.2.8.tar.gz
$ tar xzf redis-3.2.8.tar.gz
$ cd redis-3.2.8/utils
$ sudo ./install_server.sh
Welcome to the redis service installer
This script will help you easily set up a running redis server
Please select the redis port for this instance: [6379]
Selecting default: 6379
Please select the redis config file name [/etc/redis/6379.conf]
Selected default - /etc/redis/6379.conf
Please select the redis log file name [/var/log/redis_6379.log]
Selected default - /var/log/redis_6379.log
Please select the data directory for this instance [/var/lib/redis/6379]
Selected default - /var/lib/redis/6379
Please select the redis executable path [] /usr/local/bin/redis-server
Selected config:
Port           : 6379
Config file    : /etc/redis/6379.conf
Log file       : /var/log/redis_6379.log
Data dir       : /var/lib/redis/6379
Executable     : /usr/local/bin/redis-server
Cli Executable : /usr/local/bin/redis-cli
Is this ok? Then press ENTER to go on or Ctrl-C to abort.
Copied /tmp/6379.conf => /etc/init.d/redis_6379
Installing service...
Successfully added to chkconfig!
Successfully added to runlevels 345!
Starting Redis server...
Installation successful!
$

之后,您应该配置其他参数,例如密码,绑定...

我希望它有帮助。

最新更新