標籤:redis
#!/bin/shpwdmkdir /datacd /datawget -c yum -y install gcc gcc-c++ make autoconf mlocate lsof rsynctar zxvf redis-2.8.9.tar.gzcd redis-2.8.9make & make installmkdir pidsmkdir logscp utils/redis_init_script /etc/init.d/redis_6379cp redis.conf /etc/redis/6379.confmkdir /data/nosql/redis/6379 -pmkdir /etc/rediscat > /etc/redis/6379.conf <<EOFdaemonize yeslogfile /data/redis-2.8.9/logs/redis_6379.logpidfile /data/redis-2.8.9/pids/redis_6379.pidport 6379bind 0.0.0.0timeout 0tcp-keepalive 0loglevel noticedatabases 16save 900 1save 300 10save 60 10000stop-writes-on-bgsave-error yesrdbcompression yesrdbchecksum yes#dbfilename dump_6379.rdbdir /data/nosql/redis/6379#maxmemory 2000000000#slave-serve-stale-data yes#slave-read-only yesrepl-disable-tcp-nodelay noslave-priority 100appendonly noappendfilename "appendonly.aof"appendfsync everysecno-appendfsync-on-rewrite noauto-aof-rewrite-percentage 100auto-aof-rewrite-min-size 64mblua-time-limit 5000slowlog-log-slower-than 10000slowlog-max-len 128notify-keyspace-events ""hash-max-ziplist-entries 512hash-max-ziplist-value 64list-max-ziplist-entries 512list-max-ziplist-value 64set-max-intset-entries 512zset-max-ziplist-entries 128zset-max-ziplist-value 64activerehashing yesclient-output-buffer-limit normal 0 0 0client-output-buffer-limit slave 256mb 64mb 60client-output-buffer-limit pubsub 32mb 8mb 60hz 10aof-rewrite-incremental-fsync yesEOF/etc/init.d/redis_6379 start
注意:
wget地址,大家可以從官網下載
bind填寫伺服器實際內網地址
本文出自 “我的營運之路” 部落格,請務必保留此出處http://linuxpython.blog.51cto.com/10015972/1631891
Redis一鍵編譯安裝指令碼