https://github.com/akman/ansible-role-memcached
Install Memcached on Linux
https://github.com/akman/ansible-role-memcached
Last synced: 6 months ago
JSON representation
Install Memcached on Linux
- Host: GitHub
- URL: https://github.com/akman/ansible-role-memcached
- Owner: Akman
- License: mit
- Created: 2017-11-21T19:33:48.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-16T12:28:16.000Z (almost 8 years ago)
- Last Synced: 2025-04-03T01:19:13.384Z (about 1 year ago)
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible Role: Memcached
An Ansible Role that installs Memcached on RedHat/CentOS or Debian/Ubuntu Linux.
## Requirements
None.
## Role Variables
Available variables are listed below, along with default values (see `defaults/main.yml`):
memcached_user: memcache
The user under which the Memcached daemon will run.
memcached_port: 11211
memcached_listen_ip: 127.0.0.1
The port and IP address (127.0.0.1 for localhost) on which Memcached will listen for requests.
memcached_memory_limit: 64
memcached_connections: 1024
Memcached limits. The maximum amount of RAM `memcached` will consume (64MB is the default), and the maximum number of simultaneous connections memcached will handle.
memcached_log_file: /var/log/memcached.log
The location of the memcached log file.
memcached_log_verbosity: ""
Normally memcached does not log anything. Change to "-v" to enable logging or to "-vv" for debug logging.
## Dependencies
None.
## Example Playbook
- hosts: cache
roles:
- { role: Akman.memcached }
## License
MIT / BSD
## Author Information
This role was created in 2017 by Alexander Kapitman