Installation Redis - extracting installation package

Download: http: //redis.io/download

1, redis downloaded copy to: /opt/software/redis-4.0.9.tar.gz

2, performed in the / opt / software / directory command: tar -zxvf redis-4.0.9.tar.gz -C / opt / local /

3, enter /opt/local/redis-4.0.9/ directory: cd /opt/local/redis-4.0.9

4, run make install commands;

Redis above steps may be installed.

The redis set to boot

1, redis into the directory: /opt/local/redis-4.0.9

2, execute the command: ./ utils / install_server.sh

3, has been the default can:

[root@localhost redis-4.0.9]# ./utils/install_server.sh 
Welcome to the redis service installer
This script will help you easily set up a running redis server
 
Please select the redis port for this instance: [6379] 
Selecting default: 6379
Please select the redis config file name [/etc/redis/6379.conf] 
Selected default - /etc/redis/6379.conf
Please select the redis log file name [/var/log/redis_6379.log] 
Selected default - /var/log/redis_6379.log
Please select the data directory for this instance [/var/lib/redis/6379] 
Selected default - /var/lib/redis/6379
Please select the redis executable path [/usr/local/bin/redis-server] 
Selected config:
Port           : 6379
Config file    : /etc/redis/6379.conf
Log file       : /var/log/redis_6379.log
Data dir       : /var/lib/redis/6379
Executable     : /usr/local/bin/redis-server
Cli Executable : /usr/local/bin/redis-cli
Is this ok? Then press ENTER to go on or Ctrl-C to abort.
Copied /tmp/6379.conf => /etc/init.d/redis_6379
Installing service...
Successfully added to chkconfig!
Successfully added to runlevels 345!
Starting Redis server...
Installation successful!
以上操作可以将redis设置为开机启动。

PS: In this way it is redis boot, redis profile path: /etc/redis/6379.conf

So if redis modify configuration files, modify the path should be: /etc/redis/6379.conf

redis installation configuration file in the directory /opt/local/redis-4.0.9/redis.conf changes will not take effect;

If you want to use /opt/local/redis-4.0.9/redis.conf, modify /etc/init.d/redis_6379 file.

redis client command performed anywhere redis-cli

The PATH the PATH = $ The Export: / opt / local / redis- 4.0 . . 9 / CLI-Redis added to / etc / Profile last line 

[the root @ localhost Redis - 4.0 . . 9 ] # VI / etc / Profile 
[the root @ localhost Redis - 4.0 . . 9 ] # Source / etc / Profile 
[the root @ localhost Redis - 4.0 . . 9 ] # Redis-CLI

 

Guess you like

Origin www.cnblogs.com/song-wentao/p/11291449.html
Recommended