Push data to Redis - test using docker container

Scenario:

Follow below steps:


  1. Portainer host -> local -> Containers -> Container -> Redis
  2. Redis command prompt
  3. cd /usr/local/bin enter
  4. ls enter
  5. redis-cli  -h hostname -p port
  6. KEYS *
    1. All Keys still in queue or stuck to be consumed
  7. LLEN keyname
    1. If there are any still in queue or stuck to be consumed
To connect without redis-cli use below:
  • ncat -v --ssl redisendpoint 6379 --if not on ssl, remove ssl option
  • To close connection ctrl + D
DELETE Key
  • DEL KeyName

No comments:

Post a Comment

Move Github Sub Repository back to main repo

 -- delete .gitmodules git rm --cached MyProject/Core git commit -m 'Remove myproject_core submodule' rm -rf MyProject/Core git remo...