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