• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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