Access the Redis Instance from a Redis-cli client

After you create an ECS instance and a whitelist entry, install a Redis-cli client on the ECS instance and access the Redis instance from the Redis-cli client. Redis-cli is the built-in client of Redis. To use Redis-cli, first install Redis.

Prerequisites

  1. You have successfully created a Redis instance. For more information, see Create a Redis Instance. Make sure the instance is in running status.
  2. You have successfully created an ECS instance. For more information, see Create an ECS Instance. Make sure the instance is in running status.
  3. You have successfully created a whitelist entry. For more information, see Create a Whitelist Entry.

Usage Guidelines

This article uses a Linux-CentOS ECS instance as an example.

Procedures

1.   Log in to the ECS instance.

      a.   Log in to the ECS Console.

      b.   In the left navigation pane, click Instance to enter the Instance Management page.

      c.    In the Operations column for the target instance, click ECS Console.

      d.    Enter the username and password.

2.  Install Redis.

Method 1:

      a.   If the operating system of your ECS instance does not include a gcc environment, execute the following command to install gcc:

      yum install gcc

      b.  Execute the following command to download the Redis installation package (The download address is download address):

      wget http://download.redis.io/releases/redis-5.0.4.tar.gz

: Choose the Redis version according to your business needs. This article uses Redis 5.0.4 as an example.

     c.   Execute the following command to decompress the Redis installation package:

      tar -xzf redis-5.0.4.tar.gz

     d.   Execute the following command to enter the Redis directory and compile Redis:

      cd redis-5.0.4
      make

Result

The system prompts that the compilation succeeds.

Method 2:

      a.  If your ECS operating system does not include a gcc environment, execute the following command to install gcc:

      yum install gcc

      b.  Execute the following command to install Redis:

      yum install redis
      
      systemctl start redis
      
      systemctl enable redis

Result

Execute the following command to verify the connectivity between the Redis-cli and Redis-server:

      redis-cli ping

3.   Use the Redis-cli client to access the Redis instance.

Method 1:

      a.   Execute the following command to enter the src directory:

      cd src

      b.  Execute the following command to connect to the Redis instance from the Redis-cli client:

      ./redis-cli -c -h Domain-Name -p Port -a Password

:

Method 2:

Execute the following command to connect to the Redis instance from the Redis-cli client:

      redis-cli -h Domain-Name -p Port -a Password

:

  • Execute the following command to connect to a cluster instance:
      redis-cli -c -h Domain-Name -p Port -a Password
  • Descriptions of parameters are as follows:

           Domain-Name: Access domain name of the Redis instance. For more information, see View Basic Information about an Instance.

           Port: Port number of the Redis instance. For more information, see View Basic Information about an Instance.

           Password: Password of the Redis instance that has been set when you create the Redis instance. For more information, see View Basic Information about an Instance.

4.  Execute the following command to write data to the Redis instance:

      set foo bar

Result

Execute the following command to view the newly written data in the Redis instance:

      get foo

   

 

 

Did the above content solve your problem? Yes No
Please complete information!

Call us

400-151-8800

Email us

cloud@pingan.com

Online customer service

Instant reply

Technical Support

cloud products