Redis启动

来源:互联网 发布:mysql 内存多大合适 编辑:程序博客网 时间:2024/06/05 09:17

找到redis安装目录,如果不知道安装目录,使用命令查找

cd / 到根目录

find ./ -name redis.conf

到redis安装目录下

redis-server redis.conf

在启动时会出现警告,解决方案如下:

WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.


警告:过量使用内存设置为0!在低内存环境下,后台保存可能失败。为了修正这个问题,请在/etc/sysctl.conf 添加一项 'vm.overcommit_memory = 1' , 然后重启(或者运行命令'sysctl vm.overcommit_memory=1' )使其生效。

按这个提示来做,警告排除。

验证redis是否启动成功: redis-cli

select 分区编号

0 0