Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/geerlingguy/ansible-role-php-redis

Ansible Role - PhpRedis
https://github.com/geerlingguy/ansible-role-php-redis

ansible extension php phpredis redis role

Last synced: 2 months ago
JSON representation

Ansible Role - PhpRedis

Awesome Lists containing this project

README

        

# Ansible Role: PhpRedis

[![CI](https://github.com/geerlingguy/ansible-role-php-redis/workflows/CI/badge.svg?event=push)](https://github.com/geerlingguy/ansible-role-php-redis/actions?query=workflow%3ACI)

Installs PhpRedis support on Linux.

## Requirements

This role doesn't *explicitly* require Redis to be installed, but if you don't have the daemon running somewhere (either on the same server, or somewhere else), this role won't be all that helpful. Check out `geerlingguy.redis` for a simple role to install and configure Redis (either on the same server, or separate servers).

On newer RHEL systems, you should also install EPEL (I use the `geerlingguy.repo-epel` role to install this).

## Role Variables

Available variables are listed below, along with default values (see `defaults/main.yml`):

php_enablerepo: epel

(RedHat/CentOS only) If you have enabled any additional repositories (might I suggest geerlingguy.repo-epel or geerlingguy.repo-remi), those repositories can be listed under this variable (e.g. `remi,epel`). This can be handy, as an example, if you want to install the latest version of PHP from Remi's repository.

php_redis_package: php-redis

(Default for Debian/Ubuntu shown). If installing from apt or yum, which package to install which provides the PhpRedis extension.

### Install from source

If you want to install PhpRedis directly from source (if you're on an OS that doesn't have it available as a package, or if you want a newer version than is available through your package manager), you can use the variables below to configure the source installation:

php_redis_install_from_source: false

Whether to install PhpRedis from source. If you'd like to install a specific version of PhpRedis not available via the system package manager, you can compile the extension from source.

php_redis_source_repo: https://github.com/phpredis/phpredis.git

The git repository for the PhpRedis extension.

php_redis_source_version: develop

The branch, tag, or commit hash to use when cloning the source repository. Can be a branch (e.g. `develop` or `php7`), a tag (e.g. `2.2.7`), or a commit hash (e.g. `5241a5c`).

php_redis_source_clone_dir: ~/phpredis

The location where the PhpRedis source code will be cloned locally.

php_redis_source_configure_command: "./configure"

The command to configure a PhpRedis source install. You can modify this command if you want to do something like add `--enable-redis-igbinary`.

## Dependencies

- geerlingguy.php

## Example Playbook

- hosts: webservers
roles:
- { role: geerlingguy.repo-epel }
- { role: geerlingguy.php-redis }

## License

MIT / BSD

## Author Information

This role was created in 2015 by [Jeff Geerling](https://www.jeffgeerling.com/), author of [Ansible for DevOps](https://www.ansiblefordevops.com/).