• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Question Install Redis with Docker, uninstall existing phpRedis on server

calu

Basic Pleskian
Server operating system version
Ubuntu 20.04.5 LTS
Plesk version and microupdate number
Plesk Obsidian v18.0.48_build1800221104.03 os_Ubuntu 20.04
Hi there, I want to run Redis image through Docker. The problem is that PhpRedis (v5.3.7), is already installed on the server through SSH.

So when I'm trying to run the image through port 6379 I receive this error:

Error: {"message":"driver failed programming external connectivity on endpoint redis (a18d3f276c9cbfa947eb7a163267e6784c2112576a63723eb545976b19b57791): Error starting userland proxy: listen tcp4 0.0.0.0:6379: bind: address already in use"}

So I need to delete the installed PHPRedis on my server through SSH, so I can run the Redis image, but I don't know which command to use.
Can you help?


The present installation is done following this procedure:

Install Redis from Source:​


Downloading the source files:​

wget https://download.redis.io/redis-stable.tar.gz

Compiling Redis:​

tar -xzvf redis-stable.tar.gz
cd redis-stable
make

make install
 
Back
Top