![]() |
While working on the Database Management System concept, frequently we have to work on practical problems. And one of the major steps to work on practical problems is to work on the Database Tables. If you are using the Linux Distributions Operating System, the application PostgreSQL on Linux could be the best for you. Configuration of PostgreSQL on Linux will help you to work on the Linux Command Line tool without having any kind of issues. Also, the Installation of PostgreSQL on Linux takes a few lines which can be another plus point to the students who want to quickly start the practical practice. However, if the PostgreSQL Configuration on Linux is not perfectly done, the application will malfunction. This article will highlight the Installation of PostgreSQL on Linux along with a few important PostgreSQL Configurational Steps on Linux.
Table of Content How to Install PostgreSQL on Linux?Step 1: On Linux Terminal & execute the following command to update all the packages. sudo apt-get update
Step 2: Now, it is time to install PostgreSQL on Linux. For that, the below-mentioned command will be used. sudo apt install postgresql postgresql-contrib
So, these are the simple commands needed to Install PostgreSQL on Linux. Following this, we will show some of the configuration methods, you have to perform on the Linux PostgreSQL. How to Check the Status of PostgreSQL on Linux?To check the status of your installed PostgreSQL on Linux, the following small command will be used. It will show the Online Status of PostgreSQL. service postgresql status
How to Start PostgreSQL on Linux?You can’t directly work on PostgreSQL on Linux just like Python or Java. You need to get into PostgreSQL. To do that, the following two commands will be used. Step 1: The first one will Enable PostgreSQL on Linux. sudo su postgres
Step 2: The second one will help to enter into the PostgreSQL. psql
How to Check Database & Users on PostgreSQL in Linux?Step 1: To check the Database implemented in PostgreSQL, the command ‘\l’ will be used. It will mark the Database there. Step 2: To check the Users available in the PostgreSQL, the command ‘\du’ will be used. How to Configure & Modify Users on PostgreSQL on Linux?Step 1: To create a simple & normal user, the following command will be used. It will show Create Role Message. CREATE USER <User-Name>;
Step 2: If you want to make the New User the Superuser, the following command will be executed. It will show an Alter Role Message. ALTER USER <User-Name> WITH SUPERUSER;
Step 3: Now, if you want to check whether the User is created or not, use the command ‘\du’ there. How to Open the Manual of PostgreSQL on Linux?There are many more features present that you might use. For that purpose, use the PostgreSQL Manual on Linux. To do so, the following command will be the best. man psql
From the discussion, we can confirm that one can easily now Configure PostgreSQL App on Linux. Performing a few commands there will clear the concept of PostgreSQL on Linux. If you find any difficulties, the Manual of PostgreSQL on Linux is available. Also ReadFrequently Asked Questions: How to Configure PostgreSQL in LinuxHow to configure PostgreSQL on Linux?
How can I check the Status of PostgreSQL on Linux?
What is the command to check the Database present in PostgreSQL on Linux?
|
Reffered: https://www.geeksforgeeks.org
PostgreSQL |
Related |
---|
![]() |
![]() |
![]() |
![]() |
|
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 11 |