首页 > 代码库 > 教你怎么安装Redis
教你怎么安装Redis
以下命令以root用户运行:
#cd /tmp/
#wget http://redis.googlecode.com/files/redis-2.6.11.tar.gz
#tar xzf redis-2.6.11.tar.gz
#cd redis-2.6.11
#make
#make install
#cd utils
#./install_server.sh
根据提示输入端口,日志路径,数据路径等即可.
Redis的启动,关闭命令:
service redis_nnn start|stop
或
/etc/init.d/redis_nnn start|stop
其中, nnn指Redis的端口号
Redis客户端Shell:
redis-cli -h <host> -p <port>
Java客户端:
https://github.com/xetorthio/jedis
教你怎么安装Redis
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。