Linux yum安装Redis及远程连接使用

redis安装

redis在第三方的源里,首先添加源,最常用的是epel源

$ yum install epel-release

然后就可以安装redis了

$ yum install redis

安装完成以后配置文件/etc/redis.conf

#修改后以便远程连接

protected-mode yes

bind 0.0.0.0

daemonize yes

启动redis服务端

$ redis-server /etc/redis.conf

查看是否启动

$ ps -ef|grep "redis"

启动客户端

$ redis-cli

简单使用

$ set name "xiaoming"

$ get name

你可能感兴趣的:(Linux yum安装Redis及远程连接使用)