ansible-redis icon indicating copy to clipboard operation
ansible-redis copied to clipboard

Highly-configurable Ansible role to install Redis and Redis Sentinel from source

Results 60 ansible-redis issues
Sort by recently updated
recently updated
newest added

Running Redis inside LXC containers requires Redis config which basically tell systemd that the service is running in an unprivileged env and cannot use private devices.

I am getting via `journalctl -xfeu redis_6379`: ```vim May 10 11:22:12 linux redis-server[34057]: 34057:C 10 May 2021 11:22:12.368 # Fatal error, can't open config file '/etc/redis/6379.conf': No such file or...

Hello, I would be good to be able to run a redis-server instance on default port (6379) and sentinel instance at the same time. I propose a modification of the...

I guess this change is too large to be merged ... but nevertheless (and at least it might be of help for anyone who still hopes for a fix of...

Hi, I've started using your role (thank your for sharing your work), and I've noticed that it is compiling Redis from sources. It's great if you want to have the...

Inside Linux Containers it is not possible to modify Kernel Parameters. Issue seems to be this task, a quick fix would be adding ignore_errors: true to the task. https://github.com/DavidWittman/ansible-redis/blob/6362fc1859253b3ac852baeed8ec29272aaa3201/tasks/install.yml#L2-L9

@DavidWittman if run in check mode this currently fails with the following error: `dict object has no attribute 'stdout_lines'`

Hello. After installing the role (Ansible) using the command "ansible-galaxy install davidwittman.redis" an archive will be downloaded and unpacked. It contains files different from those which are currently on Github....

I noted that `tasks/main.yml` has this: ``` - include: server.yml when: not redis_sentinel tags: - config - include: sentinel.yml when: redis_sentinel tags: - config ``` Because of the `when` conditionals,...