Skip to content

Commit 89c5995

Browse files
committed
Apply suggestions from code review
1 parent f9a9be8 commit 89c5995

File tree

1 file changed

+49
-45
lines changed
  • content/operate/oss_and_stack/install/install-stack

1 file changed

+49
-45
lines changed

content/operate/oss_and_stack/install/install-stack/homebrew.md

Lines changed: 49 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -44,51 +44,7 @@ Follow these steps to remove any existing Redis installation files:
4444
rm -iv $(brew --prefix)/etc/redis.conf
4545
```
4646

47-
Next, follow the instructions in the [next section](#install-using-homebrew) to install Redis Open Source 8.x using the Redis Homebrew cask. After installation and starting Redis, you can test to see if all the modules are loaded correctly by running the following command.
48-
49-
{{< highlight bash >}}
50-
$ redis-cli MODULE LIST
51-
1) 1) "name"
52-
2) "bf"
53-
3) "ver"
54-
4) (integer) 80200
55-
5) "path"
56-
6) "/usr/local/lib/redis/modules//redisbloom.so"
57-
7) "args"
58-
8) (empty array)
59-
2) 1) "name"
60-
2) "timeseries"
61-
3) "ver"
62-
4) (integer) 80200
63-
5) "path"
64-
6) "/usr/local/lib/redis/modules//redistimeseries.so"
65-
7) "args"
66-
8) (empty array)
67-
3) 1) "name"
68-
2) "search"
69-
3) "ver"
70-
4) (integer) 80201
71-
5) "path"
72-
6) "/usr/local/lib/redis/modules//redisearch.so"
73-
7) "args"
74-
8) (empty array)
75-
4) 1) "name"
76-
2) "vectorset"
77-
3) "ver"
78-
4) (integer) 1
79-
5) "path"
80-
6) ""
81-
7) "args"
82-
8) (empty array)
83-
5) 1) "name"
84-
2) "ReJSON"
85-
3) "ver"
86-
4) (integer) 80200
87-
5) "path"
88-
6) "/usr/local/lib/redis/modules//rejson.so"
89-
7) "args"
90-
8) (empty array)
91-
{{< /highlight >}}
47+
Next, follow the instructions in the [next section](#install-using-homebrew) to install Redis Open Source 8.x using the Redis Homebrew cask.
9248

9349
## Install using Homebrew {#install-using-homebrew}
9450

@@ -149,6 +105,54 @@ Test the connection with the `ping` command:
149105
PONG
150106
{{< /highlight >}}
151107
108+
### Verify that all modules are loaded correctly
109+
110+
If you had previously installed earlier versions of Redis using Homebrew, for example 7.2.x or 7.4.x, you should test to see if all the modules are loaded correctly by running the following command. Your output should look similar to the following:
111+
112+
{{< highlight bash >}}
113+
$ redis-cli MODULE LIST
114+
1) 1) "name"
115+
2) "bf"
116+
3) "ver"
117+
4) (integer) 80200
118+
5) "path"
119+
6) "/usr/local/lib/redis/modules//redisbloom.so"
120+
7) "args"
121+
8) (empty array)
122+
2) 1) "name"
123+
2) "timeseries"
124+
3) "ver"
125+
4) (integer) 80200
126+
5) "path"
127+
6) "/usr/local/lib/redis/modules//redistimeseries.so"
128+
7) "args"
129+
8) (empty array)
130+
3) 1) "name"
131+
2) "search"
132+
3) "ver"
133+
4) (integer) 80201
134+
5) "path"
135+
6) "/usr/local/lib/redis/modules//redisearch.so"
136+
7) "args"
137+
8) (empty array)
138+
4) 1) "name"
139+
2) "vectorset"
140+
3) "ver"
141+
4) (integer) 1
142+
5) "path"
143+
6) ""
144+
7) "args"
145+
8) (empty array)
146+
5) 1) "name"
147+
2) "ReJSON"
148+
3) "ver"
149+
4) (integer) 80200
150+
5) "path"
151+
6) "/usr/local/lib/redis/modules//rejson.so"
152+
7) "args"
153+
8) (empty array)
154+
{{< /highlight >}}
155+
152156
## Stop Redis
153157
154158
Run the following command:

0 commit comments

Comments
 (0)