2016年8月24日星期三

Redis_001:MAC 下安装与启动

环境:MAC OS X 10.11.6 + Redis 3.2.3

1. Redis 官网:http://redis.io/

2. 安装 Redis
(1)tar xzf redis-3.2.3.tar.gz
(2)ln -s redis-3.2.3 redis
(3)cd redis
(4)make test
(5)make install

3. 运行 Redis
$ redis-server 
76457:C 24 Aug 20:05:36.134 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
76457:M 24 Aug 20:05:36.135 * Increased maximum number of open files to 10032 (it was originally set to 256).
                _._                                                  
           _.-``__ ''-._                                             
      _.-``    `.  `_.  ''-._           Redis 3.2.3 (00000000/0) 64 bit
  .-`` .-```.  ```\/    _.,_ ''-._                                   
 (    '      ,       .-`  | `,    )     Running in standalone mode
 |`-._`-...-` __...-.``-._|'` _.-'|     Port: 6379
 |    `-._   `._    /     _.-'    |     PID: 76457
  `-._    `-._  `-./  _.-'    _.-'                                   
 |`-._`-._    `-.__.-'    _.-'_.-'|                                  
 |    `-._`-._        _.-'_.-'    |           http://redis.io        
  `-._    `-._`-.__.-'_.-'    _.-'                                   
 |`-._`-._    `-.__.-'    _.-'_.-'|                                  
 |    `-._`-._        _.-'_.-'    |                                  
  `-._    `-._`-.__.-'_.-'    _.-'                                   
      `-._    `-.__.-'    _.-'                                       
          `-._        _.-'                                           
              `-.__.-'                                               

76457:M 24 Aug 20:05:36.136 # Server started, Redis version 3.2.3
76457:M 24 Aug 20:05:36.136 * The server is now ready to accept connections on port 6379


没有评论: