在 macOS 上安装 Redis Stack
如何在 macOS 上安装 Redis Stack
Redis 堆栈 | Redis 社区版 |
---|
要在 macOS 上安装 Redis Stack,请使用 Homebrew。在开始阅读下面的安装说明之前,请确保您已安装 Homebrew。
有三种冲泡桶可供选择。
redis-stack
包含两者redis-stack-server
和redis-stack-redisinsight
木 桶。redis-stack-server
仅提供 Redis Stack 服务器。redis-stack-redisinsight
包含 Redis Insight。
使用 Homebrew 安装
首先,点击 Redis Stack Homebrew 点击:
brew tap redis-stack/redis-stack
Next, run brew install
:
brew install redis-stack
The redis-stack-server
cask will install all Redis and Redis Stack binaries. How you run these binaries depends on whether you already have Redis installed on your system.
First-time Redis installation
If this is the first time you've installed Redis on your system, you need to be sure that your PATH
variable includes the Redis Stack installation location. This location is either /opt/homebrew/bin
for Apple silicon Macs or /usr/local/bin
for Intel-based Macs.
To check this, run:
echo $PATH
Then, confirm that the output contains /opt/homebrew/bin
(Apple silicon Macs) or /usr/local/bin
(Intel Mac). If these directories are not in the output, see the "Existing Redis installation" instructions below.
Note:
Because Redis Stack is installed using a brew cask via the brew tap
command, it will not be integrated with the brew services
command.
Existing Redis installation
If you have an existing Redis installation on your system, then might want to modify your $PATH
to ensure that you're using the latest Redis Stack binaries.
Open the file ~/.bashrc
or ~/zshrc
(depending on your shell), and add the following lines.
For Intel-based Macs:
export PATH=/usr/local/Caskroom/redis-stack-server/<VERSION>/bin:$PATH
For Apple silicon Macs:
export PATH=/opt/homebrew/Caskroom/redis-stack-server/<VERSION>/bin:$PATH
In both cases, replace <VERSION>
with your version of Redis Stack. For example, with version 6.2.0, path is as follows:
export PATH=/opt/homebrew/Caskroom/redis-stack-server/6.2.0/bin:$PATH
Start Redis Stack Server
You can now start Redis Stack Server as follows:
redis-stack-server
Installing Redis after installing Redis Stack
If you've already installed Redis Stack with Homebrew and then try to install Redis with brew install redis
, you may encounter errors like the following:
Error: The brew link step did not complete successfully
The formula built, but is not symlinked into /usr/local
Could not symlink bin/redis-benchmark
Target /usr/local/bin/redis-benchmark
already exists. You may want to remove it:
rm '/usr/local/bin/redis-benchmark'
To force the link and overwrite all conflicting files:
brew link --overwrite redis
To list all files that would be deleted:
brew link --overwrite --dry-run redis
In this case, you can overwrite the Redis binaries installed by Redis Stack by running:
brew link --overwrite redis
However, Redis Stack Server will still be installed. To uninstall Redis Stack Server, see below.
Uninstall Redis Stack
To uninstall Redis Stack, run:
brew uninstall redis-stack-redisinsight redis-stack-server redis-stack
brew untap redis-stack/redis-stack
Connect to Redis
Once Redis is running, you can test it by running redis-cli
:
redis-cli
Test the connection with the ping
command:
127.0.0.1:6379> ping
PONG
You can also test that your Redis server is running using
Redis Insight.
Next steps
Once you have a running Redis instance, you may want to:
- Try the Redis CLI tutorial
- Connect using one of the Redis clients
- Install Redis "properly"
for production use.
On this page