前台启动(不推荐)
前台启动,命令行窗口不能关闭,否则服务器停止
- redis-server
关闭redis
- ctrl+C : 关闭
后台启动(推荐)
备份redis.conf
cd redis-6.2.6/cp redis.conf /etc/redis.confcd /etc
后台启动设置daemonize no改成yes
设置支持后台启动
在刚刚备份的etc文件夹中,修改redis.conf
vi redis.conf
:/daem
Redis启动
cd /usr/local/bin
ls
redis-server /etc/redis.conf
通过进程,查看是否启动成功
ps -ef | grep redis
通过客户端连接redis
redis-cli
表示正常连通状态
退出连接
exit
关闭redis
方法一
- shutdown : 关闭
方法二
ps -ef | grep redis