CentOS6.4下安装redis-2.6.14

阅读更多

CentOS6.4下安装redis-2.6.14

1.如果你是安装的CentOS桌面版的话,看上一blog,先安装gcc,gdb,g++ 等工具,

2,安装图为:

CentOS6.4下安装redis-2.6.14_第1张图片

 

CentOS6.4下安装redis-2.6.14_第2张图片

 这一步,你想移动就移动,如果不想移动就可以放在当前文件目录下,

作一个软连接,如:

ln /usr/redis2.6.4/src/redis-server  /usr/bin/ 

ln /usr/redis2.6.4/src/redis-cli  /usr/bin/   

这样 下次就可以直接用 redis-server 启动了,

 

CentOS6.4下安装redis-2.6.14_第3张图片

 

 在redis-2.6.4 文件下 mkdir conf 

再 cp  redis.conf  conf/  copy 到此文件内,

修改 redis.conf 中的参数:

daemonize no   修改为  yes ,表示以后台方式启动。
启动:
[root@centos64 redis-2.6.14]# redis-server  /usr/redis-2.6.14/conf/redis.conf  以后台方式启动
1.启动后用 redis-cls  客户端 login 
2. 查看进程: ps -ef | grep redis
[root@centos64 redis-2.6.14]# ps -ef | grep redis
root      8245     1  0 16:05 ?        00:00:00 redis-server /usr/redis-2.6.14/conf/redis.conf
root      8764  4514  0 16:18 pts/1    00:00:00 grep redis

3.redis 的 默认端口是 6379  ,再查看端口:

[root@centos64 redis-2.6.14]# netstat -tunpl | grep 6379
tcp        0      0 0.0.0.0:6379                0.0.0.0:*                   LISTEN      8245/redis-server

4. 杀掉redis-serve 用:

[root@centos64 redis-2.6.14]# pkill redis-server             --kill 进程
[root@centos64 redis-2.6.14]# netstat -tunpl | grep 6379     --再查看端口就没有被占用            

 [root@centos64 redis-2.6.14]#
或用:

[root@centos64 redis-2.6.14]# netstat -tunpl | grep 6379                      tcp        0      0 0.0.0.0:6379                0.0.0.0:*                   LISTEN      8906/redis-server
[root@centos64 redis-2.6.14]# redis-cli shutdown            --kill 进程
[root@centos64 redis-2.6.14]# netstat -tunpl | grep 6379

[root@centos64 redis-2.6.14]#

 

CentOS6.4下安装redis-2.6.14_第4张图片 

 

 CentOS6.4下安装redis-2.6.14_第5张图片

 

 

 附件中上传一份操作手册,网上找的。

 

 

 

  • CentOS6.4下安装redis-2.6.14_第6张图片
  • 大小: 71.9 KB
  • CentOS6.4下安装redis-2.6.14_第7张图片
  • 大小: 91.6 KB
  • CentOS6.4下安装redis-2.6.14_第8张图片
  • 大小: 128.1 KB
  • CentOS6.4下安装redis-2.6.14_第9张图片
  • 大小: 72.4 KB
  • CentOS6.4下安装redis-2.6.14_第10张图片
  • 大小: 153.7 KB
  • CentOS6.4下安装redis-2.6.14_第11张图片
  • 大小: 101.8 KB
  • 《Redis实战》红丸出品.pdf (1.3 MB)
  • 下载次数: 15
  • 查看图片附件

你可能感兴趣的:(CentOS6.4下安装redis-2.6.14)