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

时间:2017-02-22 04:26:06

标签: configuration redis server installation

我不小心删除了./etc下的redis文件,现在我似乎无法连接到redes服务器。无论如何我可以重新安装redis吗?如果是这样的话?请帮我。提前谢谢

1 个答案:

答案 0 :(得分:0)

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

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

或者通过包管理器重新安装包,例如 yum - 如果redis是由包管理器安装的。

$ yum --enablerepo=epel,remi reinstall redis

但是在你的情况下,我认为如果你像redis.conf这样制作一个/ etc / redis / *文件就没关系。这是一个脚本运行示例,安装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!
$

之后,您应该配置其他参数,如password,bind,...

我希望它有所帮助。

相关问题