# **步骤↓:**
## 1. 安装
```
wget http://download.redis.io/releases/redis-5.0.3.tar.gz
tar xzf redis-5.0.3.tar.gz
cd redis-5.0.3
make
```
## 2. 为方便操作,可以将redis安装目录配置进环境变量
```
vi ~/.bash_rc
#加入:
REDIS_HOME="你的Redis存放路径"
export PATH="$PATH:$REDIS_HOME"
#使环境变量生效
source ~/.bash_rc
#或
. ~/.bash_rc
```
## 3. 启动Redis服务端
```
nohup redis-server &
```
## 4. 检验。查看redis进程是否启动
```
ps -aux | grep redis|grep -v grep
```
## 5. 打开Redis客户端
```
redis-cli -p 6379
127.0.0.1:6379>
```
### 敲几个命令试一下
```
1. 127.0.0.1:6379> keys *
2. (empty list or set)
3. 127.0.0.1:6379> set a 1
4. OK
5. 127.0.0.1:6379> keys *
6. 1) "a"
7. 127.0.0.1:6379> get a
8. "1"
9. 127.0.0.1:6379> exit
```
# ** 到此Redis就可以正常使用了,接下来进行简单配置**
```
cd $REDIS_HOME
vi redis.conf
```
编辑redis.conf这个配置文件,可以设置Redis端口号、Redis占用的内存大小、移除算法等,每项配置都有很详细的注释说明,可自行研究。
**重启redis:**
```
ps -aux|grep redis|grep -v grep|xargs kill -9
nohup redis-server $REDIS_HOME/redis.conf &
```
Redis可以启动多个实例,拷贝多个redis.conf,修改port,改成不同的端口,使用不同的配置文件启动redis服务端即可,例:
```
cd $REDIS_HOME
cp redis.conf redis1.conf
vi redis1.conf #修改port为6380
nohup redis-server $REDIS_HOME/redis.conf &
nohup redis-server $REDIS_HOME/redis1.conf &
ps -aux|grep redis|grep -v grep
```
就可以看到成功开启了两个redis实例,6379和6380
到此redis的安装配置就完成了!
- 第一章Java环境安装
- 1.Jdk环境安装
- 1.1Windows
- 1.2Linux
- 1.3MaxX
- 2.Tomcat环境
- 3.Git环境配置
- 3.1Git_Windows
- 3.2Git_Linux
- 3.3Git基本操作命令
- 4.SVN配置
- 4.1TortoiseSVN_Windows
- 5.maven安装
- 5.1Maven_Windows
- 6.RabbitMQ安装
- 6.1RabbitMQ_Windows
- 6.2RabbitMQ_CentOS
- 6.3RabbitMQ_MacOS
- 7.mysql安装
- 7.1Mysql_Windows
- 7.2Mysql_CentOS
- 7.3 Mysql_Ubuntu
- 7.4Mysql_MacOS
- 8.Redis安装
- 8.1Redis_windows
- 8.2Redis Desktop Manage
- 8.3Redis_linux&macOS
- 9.zookeeper安装
- 9.1Zookeeper_Windows
- 12.kafka安装
- 10.nigix安装
- 1.1MacX
- 1.2Linux
- 11.docker安装
- 第二章Python环境
- 1.Python安装
- 2.conda环境安装
- 第三章Rasa环境安装
- 1.MITIE安装
- 第四章VUE环境安装
- 1.Node环境安装