You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The RabbitMQ server scripts and [CLI tools](./cli.html) are installed into the `sbin` directory under `/usr/local/Cellar/rabbitmq/<version>/`,
49
-
which is accessible from `/usr/local/opt/rabbitmq/sbin`. Links to binaries have been created under `/usr/local/sbin`.
48
+
The RabbitMQ server scripts and [CLI tools](./cli.html) are installed into the `sbin` directory under `/usr/local/Cellar/rabbitmq/<version>/` for macOS Intel or `/opt/homebrew/Cellar/rabbitmq/<version>/` for Apple Silicon,
49
+
which is accessible from `/usr/local/opt/rabbitmq/sbin` for for macOS Intel or `/opt/homebrew/opt/rabbitmq/sbin` for Apple Silicon. Links to binaries have been created under `/usr/local/sbin` for macOS Intel or `/opt/homebrew/sbin` for Apple Silicon.
50
+
50
51
In case that directory is not in `PATH` it's recommended to append it:
51
52
52
53
<preclass="lang-bash">
54
+
# for macOS Intel
53
55
export PATH=$PATH:/usr/local/sbin
56
+
# for Apple Silicon
57
+
export PATH=$PATH:/opt/homebrew/sbin
54
58
</pre>
55
59
56
60
Add the above export to the shell profile (such as `~/.bashrc` for bash or `~/.zshrc` for zsh)
0 commit comments