Connecting to Redis on redis-py (Python)
This section describes how to access a Redis instance on redis-py. For more information about how to use other Redis clients, visit the Redis official website.
The following operations are based on an example of accessing a Redis instance on a client on an elastic cloud server (ECS).
Use redis-py to connect to single-node, master/standby, and Proxy Cluster instances and redis-py-cluster to connect to Redis Cluster instances.
Prerequisites
- A Redis instance is created, and is in the Running state. To create a Redis instance, see Buying a DCS Redis Instance.
- An ECS has been created. For details about how to create an ECS, see Purchasing a Custom ECS
- If the ECS runs the Linux OS, ensure that the Python compilation environment has been installed on the ECS.
- The client and the Redis instance must be interconnected before connecting to the instance. For details, see Network Conditions for Accessing DCS Redis.
Connecting to Redis on redis-py
- View the IP address/domain name and port number of the DCS Redis instance to be accessed.
For details, see Viewing and Modifying Basic Settings of a DCS Instance.
- Log in to the ECS.
The following uses CentOS as an example to describe how to access an instance using a Python client.
- Access the DCS Redis instance.
If the ECS OS does not provide Python, run the following yum command to install it:
yum install python
The Python version must be 3.6 or later. If the default Python version is earlier than 3.6, perform the following operations to change it:
- Run the rm -rf python command to delete the Python symbolic link.
- Run the ln -s pythonX.X.X python command to create another Python link. In the command, X.X.X indicates the Python version number.
- For single-node, master/standby, or Proxy Cluster types:
- Install Python and redis-py.
- If the system does not provide Python, run the yum command to install it.
- Run the following command to download and decompress the redis-py package:
wget https://github.com/andymccurdy/redis-py/archive/master.zip unzip master.zip
- Go to the directory where the decompressed redis-py package is saved, and install redis-py.
python setup.py install
After the installation, run the python command. redis-py have been successfully installed if the following command output is displayed:
Figure 1 Running the python command
- Use the redis-py client to connect to the instance. In the following steps, commands are executed in CLI mode. (Alternatively, write the commands into a Python script and then execute the script.)
- Run the python command to enter the CLI mode. You have entered CLI mode if the following command output is displayed:
Figure 2 Entering the CLI mode
- Run the following command to access the chosen DCS Redis instance:
r = redis.StrictRedis(host='XXX.XXX.XXX.XXX', port=6379, password='******');
XXX.XXX.XXX.XXX indicates the IP address/domain name of the DCS instance and 6379 is an example port number of the instance. For details about how to obtain the IP address/domain name and port, see 1. Change them as required. ****** indicates the password used for logging in to the chosen DCS Redis instance. This password is defined during DCS Redis instance creation.
You have successfully accessed the instance if the following command output is displayed. Enter commands to perform read and write operations on the database.
Figure 3 Redis connected successfully
- Run the python command to enter the CLI mode. You have entered CLI mode if the following command output is displayed:
- Install Python and redis-py.
- For the Redis Cluster type:
- Install the redis-py-cluster client.
- Download the released version.
wget https://github.com/Grokzen/redis-py-cluster/releases/download/2.1.3/redis-py-cluster-2.1.3.tar.gz
- Decompress the package.
tar -xvf redis-py-cluster-2.1.3.tar.gz
- Go to the directory where the decompressed redis-py-cluster package is saved, and install redis-py-cluster.
python setup.py install
- Download the released version.
- Access the DCS Redis instance by using redis-py-cluster.
In the following steps, commands are executed in CLI mode. (Alternatively, write the commands into a Python script and then execute the script.)
- Run the python command to enter the CLI mode.
- Run the following command to access the chosen DCS Redis instance. If the instance does not have a password, exclude password='******' from the command.
>>> from rediscluster import RedisCluster >>> startup_nodes = [{"host": "192.168.0.143", "port": "6379"},{"host": "192.168.0.144", "port": "6379"},{"host": "192.168.0.145", "port": "6379"},{"host": "192.168.0.146", "port": "6379"}] >>> rc = RedisCluster(startup_nodes=startup_nodes, decode_responses=True, password='******') >>> rc.set("foo", "bar") True >>> print(rc.get("foo")) 'bar'
- Install the redis-py-cluster client.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot