0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Rails 初学者】Mac(M1) にHomebrewでRedisをインストールして起動するまでの手順メモ

Posted at

こんにちは。
子育て中の現役看護師です。
エンジニア転職を目指して勉強中を始めたばかりです。
この記事では、M1チップ搭載のMacBook AirにRedisをインストールし、起動するまでの流れをまとめます。

自分用のメモとして、残しておきます。


環境

  • macOS (M1チップ搭載 MacBook Air)
  • Homebrew(パッケージ管理ツール)

Redis をインストールする

まずはHomebrewでRedisをインストール。

brew install redis

実行時に表示された内容(一部)

==> Auto-updating Homebrew...
==> Downloading https://ghcr.io/v2/homebrew/core/redis/manifests/7.2.7
==> Pouring redis--7.2.7.arm64_sonoma.bottle.tar.gz
...
🍺  /opt/homebrew/Cellar/redis/7.2.7: 15 files, 2.4MB

Redis を起動する方法

Homebrew公式の方法で常駐起動させるには以下のコマンドを使用

brew services start redis

sudo redis-server で起動してみる

以下のコマンドでもRedisを起動できる。

sudo redis-server
95684:C 27 Mar 2025 04:06:02.273 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
...
95684:M 27 Mar 2025 04:06:02.274 * Ready to accept connections tcp

Redis のASCIIアートが出て、Ready to accept connections tcp と表示されたら起動成功

Redis クライアントから接続確認

別のターミナルを開いて以下を入力

redis-cli

Redis のプロンプトが表示されたら接続成功

127.0.0.1:6379>

接続確認として以下を入力

ping

結果

PONG

Redisが正しく起動していることが確認できた。


間違えていたら、すいません。
引き続き、学習を続けていきます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?