4、复制配置文件
cp /usr/local/soft/redis-3.0.0/redis.conf /usr/local/soft/redis/bin/
1
配置环境变量
vim /etc/profile
1
添加环境变量
export REDIS_HOME=/usr/local/soft/redis/
export PATH=$REDIS_HOME/bin
12
让环境变量修改生效
source /etc/profile
1
5、启动Redis
后台启动
cd /usr/local/soft/redis/bin
1
nohup redis-server redis.conf &
1
关闭redis的命令,要先获取Redis的进程号,*死该进程
ps -aux | grep redis
1
kill -9
1
6、连接Redis
查看启动日志:
cat nohup.out
1
后台启动Redis
redis-cli
1
7、测试使用Redis
插入一条数据
set key1 value1
1
查询数据
get key1
1