Linux下Redis主從配置

來源:互聯網
上載者:User

Linux下Redis主從配置

1.去http://redis.io/download下載redis-2.8.24.tar.gz

2.解壓redis-2.8.24.tar.gz並安裝

tar xvf redis-2.8.24.tar.gz
mv redis-2.8.24 /usr/local/cd /usr/local/redis-2.8.24make
make install  #會複製redis相關命令到/usr/local/bin目錄下

3.建立redis使用者和資料存放區目錄

useradd -s /sbin/nologin -d /var/lib/redis redismkdir /data0/redischown redis.root /data0/redis

4.複製redis.conf檔案到/etc目錄下,並修改檔案

主伺服器上修改設定檔redis.conf

daemonize yes  #在後台啟動
port 6379  #連接埠
bind 127.0.0.1  #綁定IP
loglevel notice  #記錄日記的層級
logfile /data0/redis/redis.log  #記錄檔
dir /data0/redis  #資料存放區目錄
requirepass 123456  #設定密碼

從伺服器上修改設定檔redis.conf

daemonize yesport 6380slaveof 172.16.59.180 6379bind 127.0.0.1
loglevel notice
logfile /data0/redis/redis.log
dir /data0/redis
requirepass 123456
masterauth 123456  #主伺服器配置的密碼

5.主從伺服器啟動redis服務

redis-server /etc/redis.conf

下面關於Redis的文章您也可能喜歡,不妨參考下:

Ubuntu 14.04下Redis安裝及簡單測試

Redis主從複製基本配置

Redis叢集明細文檔

Ubuntu 12.10下安裝Redis(圖文詳解)+ Jedis串連Redis

Redis系列-安裝部署維護篇

CentOS 6.3安裝Redis

Redis安裝部署學習筆記

Redis設定檔redis.conf 詳解

Redis 的詳細介紹:請點這裡
Redis 的:請點這裡

本文永久更新連結地址:

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.