NoSql之Redis的安装配置以及常用命令

官网地址:

Https://redis.io/download

redis的windoms版只能到redis的github官网下载:

https://github.com/microsoftarchive/redis/releases

注册全局的环境变量,方便使用

服务端启动命令:redis-server.exe redis.windows.conf
	或者redis-server.exe
 redis.windows.conf 可以省略,如果省略,会启用默认的

客户端启动命令:redis-cli.exe -h 127.0.0.1 -p 6379

 

redis-server.exe (.exe有无均可)
redis-server.exe redis.windows.conf
redis-cli.exe
redis-cli.exe -h 127.0.0.1 -p 6379
redis-cli.exe -h 127.0.0.1 -p 6379 -a 123456

redis-server.exe --service-install redis.windows.conf 
redis-server --service-install redis.windows-service.conf --loglevel verbose(注册为Windows服务)
redis-server --service-uninstall
redis-server --service-start
redis-server --service-stop
redis-server --service-name name(重命名)

redis-server --service-install --service-name redisService1 --port 10001
redis-server --service-start --service-name redisService1

ping
quit
AUTH "pwdstring"
ECHO "hello world!!"
SELECT 1   #使用1号数据库
SET db_number 1
GET db_number
CLIENT SETNAME
CLIENT GETNAME

CONFIG GET *
CONFIG SET loglevel "notice"
CONFIG GET loglevel
CONFIG set requirepass "pwdstring"
CONFIG get requirepass

shutdown
INFO  //redis服务器的统计信息
BGSAVE //在后台异步保存当前数据库的数据到磁盘
CLIENT LIST 
CLIENT KILL [ip:port] [ID client-id] 关闭客户端连接
SAVE //同步保存数据到硬盘
SHUTDOWN [NOSAVE/SAVE] //异步保存数据到硬盘,并关闭服务器
MONITOR //实时打印出 Redis 服务器接收到的命令,调试用
FLUSHDB //删除当前数据库的所有key

Redis支持五种数据类型:string(字符串),hash(哈希),list(列表),set(集合)及zset(sorted set:有序集合)。

具体参见博客redis常用命令

Redis图形化客户端管理软件

Redis Desktop Manage:https://github.com/uglide/RedisDesktopManager

Redis Client:https://github.com/caoxinyu/RedisClient

Redis Studio:https://github.com/cinience/RedisStudio

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值