It’s very easy to install Redis 3 on Ubuntu 16, just need to add PPA repository to your OS:redis
add-apt-repository ppa:chris-lea/redis-server
Now you have to update your repositories list and install Redis:数据库
apt-get update apt-get install redis-server
You can see your Redis version by typing:ubuntu
redis-server --version
Start and check your Redis server status with the following commands:vim
systemctl start redis-serversystemctl status redis-server.service
service --status-all --显示所有服务列表等同于chkconfig --list
For testing your Redis server you can follow the instruction below:spa
redis-cli > set test "HugeServer" > get test
运行结果为: “HugeServer”.net
配置文件:修改/etc/redis/redis.conf配置文件中的数据库存放路经,日志存放路经和绑定IP地址。Redis系列-配置文件小结日志
vim /etc/redis/redis.conf
https://www.hugeserver.com/kb/install-redis-debian-ubuntu/code