Search ALL -->
| How to Install PgAdmin on Rocky Linux and AlmaLinux ( 2023-10-12 ) + ( 837 ) | | https://www.tecmint.com/install-pgadmin-rocky-linux-almalinux/ | How to Install PgAdmin on Rocky Linux and AlmaLinux James KiarieLast Updated: August 30, 2021 Categories AlmaLinux, PostgreSQL, Rocky Linux 1 Comment freestar PgAdmin 4 is an open-source, powerful, and front-end PostgreSQL database administration tool. PgAdmin 4 allows administrators to seamlessly manage PostgreSQL databases from a web browser and run SQL queries among other database tasks. It’s written in Python and Javascript/JQuery and is an improvement of its predecessor PgAdmin. PgAdmin 4 Features Notable features include: A syntax highlighting SQL editor. Redesigned and new-look user interface. Live SQL query tool for directly editing the data. Powerful and easy-to-use tools for everyday database administrative tasks. Responsive web interface, and so much more. In this article, we focus on how you can install PgAdmin4 on Rocky Linux and AlmaLinux. Prerequisites As a requirement, you need to have PostgreSQL installed. Already, we have a guide on how to install PostgreSQL on Rocky Linux and AlmaLinux. Step 1: Add the PgAdmin4 Repository on Rocky Linux To install PgAdmin4, the first step will be to add the PgAdmin4 repository. But first, install the yum-utils package. $ sudo dnf install yum-utils Install Yum-Utils Install Yum-Utils freestar Next, disable the PostgreSQL common repositories to prepare for the installation of the latest PgAdmin4 packages. $ sudo yum-config-manager --disable pgdg-common Once the command has run successfully, install the PgAdmin4 repository. $ sudo rpm -i https://ftp.postgresql.org/pub/pgadmin/pgadmin4/yum/pgadmin4-redhat-repo-2-1.noarch.rpm Step 2: Install PgAdmin4 on Rocky Linux Once the PgAdmin4 repository is in place, update the system repositories. $ sudo dnf update Next, install pgAdmin 4 by running the command: $ sudo dnf install pgadmin4 This installs pgAdmin4, Apache webserver alongside other dependencies that are required by PgAdmin4. Press ‘Y’ when prompted to install all the packages and dependencies. Install PgAdmin in Rocky Linux Install PgAdmin in Rocky Linux Step 3: Start and Enable Apache Webserver Before setting up PgAdmin4, we need to start the Apache webserver service. This is necessary since PgAdmin4 runs on a webserver. To enable Apache web server, run the command: $ sudo systemctl enable httpd Once enabled, proceed and start the Apache service as follows. $ sudo systemctl start httpd To verify that Apache is running, execute the command: $ sudo systemctl status httpd Verify Apache in Rocky Linux Verify Apache in Rocky Linux Step 4: Set Up PgAdmin4 in Rocky Linux freestar Moving on, we can now proceed to configure PgAdmin4 by running the PgAdmin4 setup script as shown: $ sudo /usr/pgadmin4/bin/setup-web.sh The script sets up PgAdmin4 in web mode and prompts for details such as the email address and the password. These will, later on, be used for authentication. Therefore, provide your email address and password, and press ‘y’ to restart the Apache webserver. Setup PgAdmin in Rocky Linux Setup PgAdmin in Rocky Linux Before we access the PgAdmin4 web GUI, we need to adjust our SELinux settings. If SELinux is on enforcing mode, set it to permissive mode as shown. $ sudo setenforce permissive We also need to configure the firewall to allow HTTP traffic as shown. $ sudo firewall-cmd --permanent --add-service=http Then reload to effect the changes. $ sudo firewall-cmd --reload Step 5: Access PgAdmin4 in Rocky Linux Finally, to log in, launch your browser and visit the URL: http://server-ip/pgadmin4 Enter the login credentials, i.e. the email address and the password that you previously set, and hit the ‘Login’ button. PgAdmin Login PgAdmin Login freestar The PgAdmin 4 dashboard will come to view. PgAdmin Dashboard PgAdmin Dashboard By default, no database server is currently connected. To connect to a new database server, click on the ‘Add New Server‘ icon. PgAdmin Add New Server PgAdmin Add New Server On the ‘General’ section, provide a name for your database server. In our case, we will provide an arbitrary name – the local PostgreSQL database. PgAdmin PostgreSQL Details PgAdmin PostgreSQL Details Then click on the ‘Connection’ tab and fill out the required details. Here we are using the default Postgres database and user credentials. The password belongs to the postgres user. Then click on ‘Save’. PgAdmin PostgreSQL Connection PgAdmin PostgreSQL Connection Upon successful connection, the database server will appear on the left sidebar. Click on it to view additional database details and view the performance dashboards. PgAdmin PostgreSQL Database Info PgAdmin PostgreSQL Database Info In this guide, we successfully installed PgAdmin4 on Rocky Linux and AlmaLinux and added a database server to monitor the performance of databases. If you read this far, tweet to the author to show them you care. Tweet a thanks freestar Previous article: The Best RedHat-based Linux Distributions Next article: How to Create eLearning Platform with Moodle and ONLYOFFICE Photo of author James Kiarie This is James, a certified Linux administrator and a tech enthusiast who loves keeping in touch with emerging trends in the tech world. When I'm not running commands on the terminal, I'm taking listening to some cool music. taking a casual stroll or watching a nice movie. Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards. Join the TecMint Weekly Newsletter (More Than 156,129 Linux Enthusiasts Have Subscribed) Was this article helpful? Please add a comment or buy me a coffee to show your appreciation. |
|