博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
redis 3.0源码安装详细步骤说明
阅读量:6671 次
发布时间:2019-06-25

本文共 987 字,大约阅读时间需要 3 分钟。

hot3.png

到官网下载,然后在服务器上执行

tar zxvf redis-3.0.4.tar.gz

cd redis-3.0.4

make

cd  src

 ./redis-server启动redis

make一下即可完成安装。通过redis-cli 进入执行ping显示pong就说明安装成功了。

不过redis推荐下面这些深层次的安装配置。

mak test

注意,执行make完成之后redis会提示
Hint: It's a good idea to run 'make test' ;)

执行一下即可。

cd src切换到redis下面的src目录,执行make test
会提示
[root@ruoshui-web src]# make test
You need tcl 8.5 or newer in order to run the Redis test

yum install tcl 即可

[root@ruoshui-web src]# make distclean 清理安装过程系统不再相关的包。

This will clean: jemalloc, lua, hiredis, linenoise

为了把redis的命令加入到系统的环境里面执行

make install

这样就可以在系统的任何地方执行redis命令了。

In order to install Redis binaries into /usr/local/bin just use:

 切换到utils目录

cd /root/redis-3.0.4/utils
执行./install_server.sh
会提示安装redis端口,配置文件,log目录等等,选择默认的,一路enter就行了

The script will ask you a few questions and will setup everything you need

to run Redis properly as a background daemon that will start again on
system reboots

上面的说的很详细,至于功能吗will start again on!以后用的时候就方便了。

转载于:https://my.oschina.net/luoyedao/blog/517382

你可能感兴趣的文章
LVS-NAT模式工作原理及配置
查看>>
我的友情链接
查看>>
Oracle IO问题解析(七)
查看>>
【HAVENT原创】k8s docker 管理 和 网页接口 监控系统
查看>>
1111111
查看>>
linux 学习前的准备 centos6的安装!
查看>>
Linux 下 IPsec-tools的使用
查看>>
ssh使用公钥授权不通过的问题解决
查看>>
iPad2 A5完美越狱获得重大进展--转载
查看>>
linux 调优 I/O 优化
查看>>
我的友情链接
查看>>
python内置函数2-callable()
查看>>
Python WindowsError
查看>>
nginx配置虚拟主机(2) - ttlsa教程系列之nginx
查看>>
postgresql安装
查看>>
零刻数据提供多地优质BGP双线接入服务
查看>>
基于微软office web apps实现在线预览文档
查看>>
okToAccept: WARNING! Your cache is running out of filedescriptors
查看>>
epel
查看>>
类中关于列表的应用
查看>>