Skip to content

Commit

Permalink
Merge pull request #2787 from RedisLabs/fix-gears-links
Browse files Browse the repository at this point in the history
fixed gears links
  • Loading branch information
dwdougherty authored Aug 23, 2023
2 parents 57a942b + cfdf5be commit 02d0cbe
Showing 1 changed file with 4 additions and 48 deletions.
52 changes: 4 additions & 48 deletions content/rdi/installation/install-redis-gears.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,82 +10,38 @@ aliases:

# RedisGears Installation

> Note: If your Redis Enterprise Cluster version is 6.2.18 or higher, you can use the `redis-di create` command in RDI CLI to install RedisGears.
Redis Data Integration requires [RedisGears](https://redis.com/modules/redis-gears) module with [Python plugin](https://docs.redis.com/latest/modules/redisgears/python/) to be installed on the Redis Enterprise cluster.

The Python plugin can be installed explicitly or alongside with the [JVM plugin](https://docs.redis.com/latest/modules/redisgears/jvm/) if the latter is needed on the cluster for other purposes.

Use the [`redis-di create`]({{<relref "/rdi/reference/cli/redis-di-create.md">}}) command in RDI CLI to install RedisGears.

## Download RedisGears

Download RedisGears based on the Linux distribution of where Redis Enterprise is installed. As mentioned, Redis Data Integration only requires the Python plugin, so download only it unless the JVM plugin is also needed.
Download RedisGears based on the Linux distribution of where Redis Enterprise is installed.

> Note: If your Redis Enterprise Cluster is version 6.2.18 or higher, please download the RedisGears bundle that includes the Python plugin.

### Ubuntu 20.04

#### Bundle with Python Plugin

```bash
curl -s https://redismodules.s3.amazonaws.com/redisgears/redisgears.Linux-ubuntu20.04-x86_64.{{<param rdi_redis_gears_current_version>}}-withdeps.zip -o /tmp/redis-gears.zip
```

#### Python Plugin Only

```bash
curl -s https://redismodules.s3.amazonaws.com/redisgears/redisgears_python.Linux-ubuntu20.04-x86_64.{{<param rdi_redis_gears_current_version>}}.zip -o /tmp/redis-gears.zip
```

#### Python and JVM Plugins

```bash
curl -s https://redismodules.s3.amazonaws.com/redisgears/redisgears.Linux-ubuntu20.04-x86_64.{{<param rdi_redis_gears_current_version>}}.zip -o /tmp/redis-gears.zip
```

### Ubuntu 18.04

#### Bundle with Python Plugin

```bash
curl -s https://redismodules.s3.amazonaws.com/redisgears/redisgears.Linux-ubuntu18.04-x86_64.{{<param rdi_redis_gears_current_semantic_version>}}-withdeps.zip -o /tmp/redis-gears.zip
```

#### Python Plugin Only

```bash
curl -s https://redismodules.s3.amazonaws.com/redisgears/redisgears_python.Linux-ubuntu18.04-x86_64.{{<param rdi_redis_gears_current_semantic_version>}}.zip -o /tmp/redis-gears.zip
```

#### Python and JVM Plugins

```bash
curl -s https://redismodules.s3.amazonaws.com/redisgears/redisgears.Linux-ubuntu18.04-x86_64.{{<param rdi_redis_gears_current_semantic_version>}}.zip -o /tmp/redis-gears.zip
```

### RHEL8

#### Bundle with Python Plugin

```bash
curl -s https://redismodules.s3.amazonaws.com/redisgears/redisgears.Linux-rhel8-x86_64.{{<param rdi_redis_gears_current_semantic_version>}}-withdeps.zip -o /tmp/redis-gears.zip
```

#### Python Plugin Only

```bash
curl -s https://redismodules.s3.amazonaws.com/redisgears/redisgears_python.Linux-rhel8-x86_64.{{<param rdi_redis_gears_current_semantic_version>}}.zip -o /tmp/redis-gears.zip
```

#### Python and JVM Plugins

```bash
curl -s https://redismodules.s3.amazonaws.com/redisgears/redisgears.Linux-rhel8-x86_64.{{<param rdi_redis_gears_current_semantic_version>}}.zip -o /tmp/redis-gears.zip
```

### RHEL7

#### Bundle with Python Plugin

```bash
curl -s https://redismodules.s3.amazonaws.com/redisgears/redisgears.Linux-rhel7-x86_64.{{<param rdi_redis_gears_current_semantic_version>}}-withdeps.zip -o /tmp/redis-gears.zip
```
```

0 comments on commit 02d0cbe

Please sign in to comment.