回答:
/etc/redis/redis-new.conf
(redis.confからコピー)を作成し、新しい構成のこれらのフィールドを変更します
/etc/init.d/redis-server-new
(ファイルredis-serverからコピー)、新しいファイルのこれらのフィールドを変更します
mkdir /var/lib/redis-new
(適切な権限を付与しますchown redis:redis /var/lib/redis-new
)chmod +x /etc/init.d/redis-server-new
update-rc.d redis-server-new defaults
また、別の方法もあります。https://github.com/antirez/redis/blob/3.0/utils/install_server.sh(ソースからredisをコンパイルした場合はソースに付属)にあるインストールスクリプトを使用できます。 2つのテンプレートファイルがあります。
redis_init_script.tpl
(utilsディレクトリにあります)redis.conf
(../
ソースのutils のディレクトリにあります新しいインスタンスを実行するポートのみを指定する必要があります(他に構成可能な選択肢がありますが、デフォルトを使用できます)。残りのファイルの配置は自動的に行われます。