How to Install pgAdmin4 on Fedora 35 using DNF

How to Install pgAdmin4 on Fedora 35 using DNF

pgAdmin 4 is an awesome open source tool for managing your PostgreSQL database. It is designed to help you monitor and manage multiple PostgreSQL and EDB Advanced Server database servers. This can be done both locally or remote, through a single graphical interface that allows the easy creation and management of database objects, running SQL queries, monitor health of the database and much more.

In this tutorial I will show you how you can install pgAdmin on Fedora. In this case pgAdmin4 on Fedora 35. However, it most certainly translates well to other versions of both pgAdmin and Fedora.

To install pgAdmin, run one of the following command:

sudo dnf install https://ftp.postgresql.org/pub/pgadmin/pgadmin4/yum/pgadmin4-fedora-repo-2-1.noarch.rpm

Install for both desktop and web modes.

sudo yum install pgadmin4

Install for desktop mode only.

sudo yum install pgadmin4-desktop

Install for web mode only.

sudo yum install pgadmin4-web
Freddie Freddie 1 year, 7 months ago 0
Login to Comment
No comments have been posted yet, be the first one to comment.
How to Create & Setup Dokku Applications & Databases
How to Create & Setup Dokku Applications & Databases
As I have mentioned many of times before, Dokku rocks! Dokku is a free and open-source project that helps you build and manage the lifecycle of your applications. Dokku does is it by leveraging the power of Docker and Heroku Buildpacks. It's perfect for solo developers or small teams ...
Fix PostgreSQL error: Stale postmaster.pid file on macOS
Fix PostgreSQL error: Stale postmaster.pid file on macOS
Sometimes when you mac shuts down unexpectedly while running a PostgreSQL database it can result in the following error: Stale postmaster.pid file. The data directory contains an old postmaster.pid file. FATAL: lock file “postmaster.pid” already exists Fix PostgreSQL error: Stale pos...
How to Install & Configure Strapi with PostgreSQL
How to Install & Configure Strapi with PostgreSQL
If you have used Strapi before, you know how fast and easy it is to install with the "--quickstart" flag that includes SQLite as a default database. However, if you want to use a database like MongoDB or PostgreSQL the install and configuration requires a little bit more att...