1
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?

More than 1 year has passed since last update.

CentOSにRedisをインストールする手順

Last updated at Posted at 2023-05-23

CentOSにRedisをインストールする手順

  1. 必要なパッケージのインストール
    CentOS 7にはRedisをインストールするためのパッケージがデフォルトのYUMリポジトリに含まれています。インストールを始める前に、システムを最新の状態に更新しておきます。

    sudo yum -y update
    
  2. Redisのインストール
    次に、以下のコマンドでRedisをインストールします。

    sudo yum -y install redis
    
  3. Redisの起動
    Redisを起動するには、以下のコマンドを使用します。

    sudo systemctl start redis
    
  4. Redisが正しく動作しているかの確認
    インストールが成功したかどうかを確認するために、以下のコマンドを使用します。

    redis-cli ping
    

もしRedisが正しく動作している場合、このコマンドはPONGというレスポンスを返します。

  1. Redisをシステム起動時に自動的に起動させる設定
    システム起動時にRedisが自動的に起動するようにするには、以下のコマンドを実行します。

    sudo systemctl enable redis
    
  2. 設定を反映させるためにRedisのサービスを再起動する必要があります。以下のコマンドで再起動が可能です。

    sudo systemctl restart redis
    

以上でRedisのインストールと設定が完了です

1
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
1
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?