Verifying Redis
This section describes how to start Redis to check whether it is available.
- Start Redis. Here, Redis 6.0.20 is used as an example.
1redis-server /home/redis-6.0.20/redis.conf
- Re-open a new terminal and connect to the server, and perform the k-v operation.
1redis-cli

- Terminate the connection.
1exit - Stop Redis.
1redis-cli -h 127.0.0.1 -p 6379 shutdown
Parent topic: Porting Guide