MacOS 通过 Homebrew 安装 Redis

本文最后更新于 2025年8月6日 16:48

安装 Redis

1
2
3
4
5
brew install redis
brew link redis

# 启动 Redis ------------
redis-server

看到下图证明启动成功:

image.png

按需修改配置文件

通过 Homebrew 安装的 Redis 和用常规 tar 包安装的 Redis 的配置文件目录有所不同。

Homebrew 安装的配置文件路径: /usr/local/etc/redis.conf

关于配置文件,我们一般会修改以下几个属性:

  • requirepass {password}:设置密码
  • daemonize [yes/no] :前台运行或后台运行
  • logfile {path}:修改日志文件路径

按配置启动 Redis

修改了配置文件后,我们需要在命令行参数中补充配置文件路径,才能够保证配置文件生效。

1
redis-server /usr/local/etc/redis.conf

MacOS 通过 Homebrew 安装 Redis
http://example.com/2025/07/18/MacOS 通过 Homebrew 安装 Redis/
作者
Moonike
发布于
2025年7月18日
更新于
2025年8月6日
许可协议