CentOS 6でRedisを複数立ち上げる
目的
開発でRedisのレプリケーションや複数のRedisへの接続を試す環境を作成するためにCentOS 6上で複数のインスタンスを立ち上げる方法を紹介します。
Redisのインストール
yum install redis
初回のみ実施すること
yum install redis
pidファイルとログ用のディレクトリを作成。
mkdir /var/run/redis/ && chown redis: /var/run/redis/
mkdir /var/log/redis/ && chown redis: /var/log/redis/
ポートごとの設定
データディレクトリ、設定ファイル、起動スクリプトの準備。
実行時はredisユーザーとなるので、ファイルオーナーとグループの設定に気をつけて下さい。
cp -uvp /etc/redis.conf /etc/redis_6379.conf
mkdir /var/lib/redis_6379 && chown redis: /var/lib/redis_6379
cp -upv /etc/init.d/redis /etc/init.d/redis_6379
configファイルの以下の部分を変更
/etc/init.d/redis_6379
# サーバー名をカスタマイズ
name="redis_6379"
# $nameをredis-serverに書き換え
exec="/usr/bin/redis-server"
# pidファイルのパスを指定
pidfile="/var/run/redis/redis_6379.pid"
# configファイルのパスを指定
REDIS_CONFIG="/etc/redis_6379.conf"
stop() {
echo -n $"Stopping $name: "
# 以下はコメントアウト
#[ -x $shut ] && $shut
#retval=$?
/etc/redis/6379.conf
# ポート番号の指定
port 6379
# pidファイルのパスを指定
pidfile /var/run/redis/redis_6379.pid
# ログファイルのパスを指定
logfile /var/log/redis/redis_6379.log
# データディレクトリを指定
dir /var/lib/redis_6379/
自動起動設定。
chkconfig --del redis # 既存のRedisを削除
chkconfig redis_6379 on
ポート6380の設定を追加する
上記の6479を6380に読み替えて設定してください。
参考
Author And Source
この問題について(CentOS 6でRedisを複数立ち上げる), 我々は、より多くの情報をここで見つけました https://qiita.com/tomgoodsun/items/553874aea5087344e2e3著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .