Centos安装配置redis
安装
1 | cd /usr/local/src/ |
有的机器会出现类似以下错误:1
2
3make[1]: Entering directory `/root/redis/src'
You need tcl 8.5 or newer in order to run the Redis test
……
这是因为没有安装tcl导致,yum安装即可:1
2
3yum install tcl
make test
make install
配置
1 | bind: 在bind 127.0.0.1前加H#"将其注释掉, 使外网可以连接 |
redis 配置文件示例
https://github.com/linli8/cnblogs/blob/master/redis%E5%89%AF%E6%9C%AC.conf
启动 : redis-server ./redis.conf
停止 : redis-cli -h 127.0.0.1 -p 6379 shutdown
开启自启动: echo “/usr/local/bin/redis-server /usr/local/redis/redis.conf” >>/etc/rc.local
本文作者 : Xuebin Zhang
原文链接 : https://capping.github.io/2018/08/20/centos-install-redis/
版权声明 : 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!