Redis Windows 初始化安装

这里写目录标题

  • 1. Redis Windows 初始化安装
    • 1.1. 启动服务
    • 1.2. 调试
      • 1.2.1. 客户端
    • 1.3. 把 redis 安装为 Windows 服务
      • 1.3.1. 常用的 redis 服务命令

1. Redis Windows 初始化安装

以下交互全部在 cmd 下。

1.1. 启动服务

redis-server.exe

启动另一个 cmd, 在该 redis 目录下, 使用命令: redis-cli.exe 启动客户端, 连接服务器。

1.2. 调试

1.2.1. 客户端

精简模式:

redis-cli.exe

指定模式:

redis-cli.exe -h 127.0.0.1 -p 6379 -a requirepass
(-h 服务器地址  -p 指定端口号 -a 连接数据库的密码 [可以在 redis.windows.conf 中配置], 默认无密码)

测试读写数据:

> set hello world
> get hello

1.3. 把 redis 安装为 Windows 服务

redis-server.exe --service-install redis.windows.conf

1.3.1. 常用的 redis 服务命令

  • 卸载服务: redis-server --service-uninstall
  • 开启服务: redis-server --service-start
  • 停止服务: redis-server --service-stop
  • 重命名服务: redis-server --service-name name

你可能感兴趣的:(#,mysql,redis,windows,服务器)