cookbook 'redis', '= 3.0.0'
redis (3) Versions 3.0.0 Follow79
Redis: a fast, flexible datastore offering an extremely useful set of data structure primitives
cookbook 'redis', '= 3.0.0', :supermarket
knife supermarket install redis
knife supermarket download redis
redis chef cookbook
Installs and configures Redis server
Overview
Redis, a fast lightweight database
Attributes
-
[:redis][:address]
- Redis server IP address (default: "0.0.0.0") IP address to bind. The default is any. -
[:redis][:port]
- Redis server port (default: "6379") TCP port to bind. The default is 6379. -
[:redis][:pid_file]
- Redis PID file path (default: "/var/run/redis.pid") Path to the PID file when daemonized. The default is /var/run/redis.pid. -
[:redis][:log_file]
- Redis log file path (default: "/var/log/redis/redis.log") Path to the log file when daemonized. The default is /var/log/redis.log. -
[:redis][:data_dir]
- Redis database directory (default: "/var/lib/redis") Path to the directory for database files. The default is /var/lib/redis. -
[:redis][:dbfile]
- Redis database filename (default: "dump.rdb") Filename for the database storage. The default is dump.rdb. -
[:redis][:client_timeout]
- Redis client timeout (default: "300") Timeout, in seconds, for disconnection of idle clients. The default is 300 (5 minutes). -
[:redis][:glueoutputbuf]
- Redis output buffer coalescing (default: "yes") Glue small output buffers together into larger TCP packets. The default is yes. -
[:redis][:saves]
- Redis disk persistence policies An array of arrays of time, changed objects policies for persisting data to disk. The default is [[900, 1], [300, 10], [60, 10000]]. -
[:redis][:slave]
- Redis replication slave (default: "no") Act as a replication slave to a master redis database. The default is no. -
[:redis][:master_server]
- Redis replication master server name (default: "master-redis.domain") The master server for this replication slave. The default is master-redis.domain. -
[:redis][:master_port]
- Redis replication master server port (default: "6379") The master server port for this replication slave. The default is 6379. -
[:redis][:sharedobjects]
- Redis shared object compression (default: "no") Attempt to reduce memory use by sharing storage for substrings. The default is no. -
[:redis][:shareobjectspoolsize]
- Redis shared object pool size (default: "1024") The size of the pool for object sharing. The default is 1024. -
[:redis][:home_dir]
- (default: "/usr/local/share/redis") -
[:redis][:install_url]
- (default: "http://redis.googlecode.com/files/redis-2.0.2.tar.gz") -
[:redis][:shareobjects]
- (default: "no") -
[:redis][:addr]
- (default: "0.0.0.0")
Recipes
-
default
- Base configuration for redis -
install_from_package
- Install From Package -
install_from_release
- Install From Release -
server
- Server
Integration
Supports platforms: debian and ubuntu
Cookbook dependencies:
* runit
* install_from
License and Author
Author:: Benjamin Black (b@b3k.us)
Copyright:: 2011, Benjamin Black
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
readme generated by cluster_chef's cookbook_munger