Using Redis Enterprise for VMware Tanzu
Creating a Redis Enterprise Database instance via cf CLI and service broker using service plans
Perform ‘cf login’ to your foundation.
Run the
# cf create-service redislabs [SERVICE PLAN] [SERVICE INSTANCE]
where SERVICE PLAN uses one of the available Redis Enterprise service plans and SERVICE INSTANCE is the new service instance name.
For example:
# cf create-service redislabs small-redis redis2`
Creating service instance redis2 in org RedisLabs space space1 as admin...
OK
Available service plans are listed in either the tile’s Ops Manager configuration, under Settings > Service Plans or in the Apps Manager > Marketplace screen.
Creating a Redis Enterprise Database instance via VMware Tanzu Apps Manager
From VMware Tanzu Apps Manager go to Marketplace and select Redis Enterprise on VMware Tanzu.
Select a plan from the available plans listed and click Select This Plan.
Write an instance name and optionally choose to bind to a deployed app then click Create.
Accessing the Redis Enterprise Cluster UI
Connect to the Redis Enterprise Admin Console by placing the Cluster Management Console Subdomain in the host part of the following URL:
https://[Cluster Management Console Subdomain].[System Domain]
. For example:https://console-redis.sys.my-domain.cf-app.com
Log in using the Administrator email account and password you specified in the tile configuration above.
Installing a License Key in an Existing Cluster
Connect to the Redis Enterprise UI per the instructions above
Log in using the Administrator email account and password you specified in the tile configuration.
Navigate to the Settings section and then the General tab.
Paste the license key you received from Redis into the Cluster key form field and click Save.
Connect to Redis Database Using redis-cli
redis-cli
is a simple command-line tool for interacting with Redis Database.
To connect to Redis Database, do the following:
Connect to one of the IP addresses of the nodes through SSH and find
redis-cli
under/opt/redislabs/bin/redis-cli
.Change to the
/opt/redislabs/bin
directory and runredis-cli
to connect to port 12000 and to the database-endpoint that is reported in the database properties after you created the database.
# sudo /opt/redislabs/bin/redis-cli -p 12000 -h database-endpoint
- To store and retrieve a key in
database1
, run the following commands:
set key1 123
get key1
For example:
127.0.0.1:16653> set key1 123
OK
127.0.0.1:16653> get key1
"123"