Redis 4.0.2單機安裝部署
01安裝GCC環境
yum -y install gcc gcc-c++ libstdc++-devel tcl -y
02下載安裝包
cd /downloads/
wget http://219.238.7.71/files/403400000ABE0C0C/download.redis.io/releases/redis-4.0.2.tar.gz
tar -zxvf redis-4.0.2.tar.gz -C /usr/local/src/
cd /usr/local/src/
mv redis-4.0.2 redis
03編譯Redis
cd /export/servers/redis/
make MALLOC=libc
make PREFIX=/usr/local/redis install
04準備配置檔案
cd /usr/local/redis/bin/
cd /usr/local/redis
mkdir conf
cd conf
vi redis_6379.conf
配置檔案如下(配置問本地連線):
bind 127.0.0.1
protected-mode yes
port 6379
tcp-backlog 511
timeout 0
tcp-keepalive 300
daemonize yes
supervised no
pidfile /export/data/redis/6379/redis_6379.pid
loglevel notice
logfile "/export/data/redis/6379/log.log"
databases 16
always-show-logo yes
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename dump.rdb
dir /export/data/redis/6379/
slave-serve-stale-data yes
slave-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-disable-tcp-nodelay no
slave-priority 100
lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
slave-lazy-flush no
appendonly yes
appendfilename "appendonly.aof"
appendfsync everysec
no-appendfsync-on-rewrite no
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
aof-load-truncated yes
aof-use-rdb-preamble no
lua-time-limit 5000
slowlog-log-slower-than 10000
slowlog-max-len 128
latency-monitor-threshold 0
notify-keyspace-events ""
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
list-max-ziplist-size -2
list-compress-depth 0
set-max-intset-entries 512
zset-max-ziplist-entries 128
zset-max-ziplist-value 64
hll-sparse-max-bytes 3000
activerehashing yes
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit slave 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
hz 10
aof-rewrite-incremental-fsync yes
特變注意的幾個欄位
bind 172.0.0.1 (注意這裡是IP遠端連線需要配置當前伺服器IP地址)
port 6380 (埠號)
pidfile /export/data/redis/6380/redis_6380.pid(生成的pid)
logfile "/export/data/redis/6380/log.log" (生成日誌儲存路徑,注意這裡前面的地址資料夾沒有一定要建立)
dir /export/data/redis/6380/ (資料儲存地址)
cluster-config-file /usr/local/redis/conf/nodes_6380.conf (配置檔案地址)
05啟動服務
mkdir -p /export/data/redis/6379/(一定要建立日誌存放的路徑)
cd /usr/local/redis/bin/
./redis-server ../conf/redis_6379.conf
06使用客戶端連線
cd /usr/local/redis/bin/
./redis-cli
(注意配置遠端連線為)
./redis-cli -h 192.168.191.100 -c -p 6379
127.0.0.1:6379> ping
PONG
配置叢集
相關文章
- centos7 下安裝redis-4.0.2CentOSRedis
- Redis安裝單機(Linux)RedisLinux
- Redis之安裝部署Redis
- Linux安裝Redis單機版LinuxRedis
- Redis2.8.1安裝部署Redis
- redis7.2 安裝部署Redis
- CentOs Solr6.2.1單機安裝部署步驟CentOSSolr
- Redis 偽分散式安裝部署配置Redis分散式
- Redis之Sentinel高可用安裝部署Redis
- Redis單例項安裝Redis單例
- redis以及php的redis擴充套件安裝部署RedisPHP套件
- centos7安裝單機環境redis3.2CentOSRedisS3
- linux安裝redis-6.0.1單機和叢集LinuxRedis
- k3s單機版安裝部署 附一鍵安裝指令碼指令碼
- Flume安裝及簡單部署
- Redis Manager 建立 Redis Cluster —— 機器安裝Redis
- redis單例部署Redis單例
- redis sentinel哨兵模式安裝部署和切換Redis模式
- Redis的安裝及建立節點、部署群集Redis
- Zookeeper單機安裝
- 單機安裝HBase
- WebSphere(was8.5)安裝簡單應用程式部署安裝Web
- Redis概述和單機、叢集安裝Redis
- K8S如何部署Redis(單機、叢集)K8SRedis
- Redis安裝與使用之簡單案例Redis
- CentOS 6.6安裝單節點Redis 3.0.3CentOSRedis
- 2,ELK安裝--ES安裝(單機版)
- Centos7下安裝redis實戰(單機版以及叢集)CentOSRedis
- linux下安裝redis 單節點安裝操作步驟LinuxRedis
- 【redis安裝】Redis
- Redis安裝Redis
- Redis 安裝Redis
- Mac安裝Redis,詳細redis安裝步驟MacRedis
- Hadoop單機版安裝Hadoop
- kubernetes單機安裝
- 單機CentOS 安裝 TiDBCentOSTiDB
- docker安裝單機版 NacosDocker
- Hbase單機版的安裝