DEV Community

Cover image for Tutorial: Install P3X Redis UI
sc0v0ne
sc0v0ne

Posted on

Tutorial: Install P3X Redis UI

This graphical tool, called P3X Redis UI. It provides a simple and fast interface for the user to manage Redis instances. Having visualization and interaction capabilities with Redis databases.

GitHub logo patrikx3 / redis-ui

📡 P3X Redis UI: A highly functional and convenient database GUI that fits in your pocket, accessible on both responsive web and desktop applications.

NPM Donate for PatrikX3 / P3X Contact Corifeus / P3X Corifeus @ Facebook Uptime ratio (90 days)

📡 P3X Redis UI: A highly functional and convenient database GUI that fits in your pocket, accessible on both responsive web and desktop applications v2026.4.1002

🌌 Bugs are evident™ - MATRIX️
🚧 This project is under active development!
📢 We welcome your feedback and contributions.

NodeJS LTS is supported

🛠️ Built on NodeJs version

v24.14.1
Enter fullscreen mode Exit fullscreen mode

📝 Description

p3x-redis-ui is a versatile Redis GUI that works as a web-based server application or a standalone desktop app. It excels at managing JSON data through an integrated CodeMirror editor with GitHub dark/light themes, supports uploading and downloading binary data, and handles SSH, cluster, and sentinel configurations.

Minimum Node.js Version

v22.0.0
Enter fullscreen mode Exit fullscreen mode

30-Second Docker Quick Start

mkdir -p ./p3x-redis-ui-settings
docker run -d \
  --name p3x-redis-ui \
  -p 7843:7843 \
  -v $PWD/p3x-redis-ui-settings:/settings \
  patrikx3/p3x-redis-ui
Enter fullscreen mode Exit fullscreen mode

Open: http://localhost:7843

Kubernetes / Docker: Always use the latest tag (patrikx3/p3x-redis-ui:latest) with imagePullPolicy: Always. Version-specific tags are available…


Install

Install Management Package Snap.

$ sudo apt update
$ sudo apt install snapd
Enter fullscreen mode Exit fullscreen mode

Check Installation.

$ sudo snap install hello-world
hello-world 6.3 from Canonical✓ installed
$ hello-world
Hello World!
Enter fullscreen mode Exit fullscreen mode

Install package P3X Redis UI.

sudo snap install p3x-redis-ui
Enter fullscreen mode Exit fullscreen mode

Image create by author - Install P3X Redis UI


Now let's perform a test, open your terminal and run the following commands. At this stage you need to have Redis installed if you don't have it, I have a tutorial explaining it.





redis-server --daemonize yes

redis-cli
# Expected: 127.0.0.1:6379>


# Create
127.0.0.1:6379> SET 'players_online' 112
OK
127.0.0.1:6379>

# GET
127.0.0.1:6379> GET players_online
"112"
127.0.0.1:6379>

Enter fullscreen mode Exit fullscreen mode

After completing each step, we will open the P3X Redis UI.

Create a new connection:
Image create by author - Install P3X Redis UI

You will complete the fields as in the image, test the connection and then add:

Image create by author - Install P3X Redis UI

We are now connected:

Image create by author - Install P3X Redis UI


Resources:


My Latest Posts



About the author:

A little more about me...

Graduated in Bachelor of Information Systems, in college I had contact with different technologies. Along the way, I took the Artificial Intelligence course, where I had my first contact with machine learning and Python. From this it became my passion to learn about this area. Today I work with machine learning and deep learning developing communication software. Along the way, I created a blog where I create some posts about subjects that I am studying and share them to help other users.

I'm currently learning TensorFlow and Computer Vision

Curiosity: I love coffee


Top comments (0)