Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to install pgadmin4 ubuntu

>> curl https://www.pgadmin.org/static/packages_pgadmin_org.pub | sudo apt-key add
>> sudo sh -c 'echo "deb https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/$(lsb_release -cs) pgadmin4 main" > /etc/apt/sources.list.d/pgadmin4.list && apt update'
>> sudo apt install pgadmin4
# this 3 step will makes pgadmin4 GUI install into your ubuntu machine
Comment

Install pgAdmin for Linux ( ubuntu )

#
# Setup the repository
#

# Install the public key for the repository (if not done previously):
sudo curl https://www.pgadmin.org/static/packages_pgadmin_org.pub | sudo apt-key add

# Create the repository configuration file:
sudo sh -c 'echo "deb https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/$(lsb_release -cs) pgadmin4 main" > /etc/apt/sources.list.d/pgadmin4.list && apt update'

#
# Install pgAdmin
#

# Install for both desktop and web modes:
sudo apt install pgadmin4

# Install for desktop mode only:
sudo apt install pgadmin4-desktop

# Install for web mode only: 
sudo apt install pgadmin4-web 

# Configure the webserver, if you installed pgadmin4-web:
sudo /usr/pgadmin4/bin/setup-web.sh

# With love @kouqhar
Comment

Install pgAdmin

curl https://www.pgadmin.org/static/packages_pgadmin_org.pub | sudo apt-key add
sudo sh -c 'echo "deb https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/$(lsb_release -cs) pgadmin4 main" > /etc/apt/sources.list.d/pgadmin4.list && apt update'
Comment

download pgadmin 4 ubuntu

$ cat /etc/apt/sources.list.d/pgadmin4.list
deb https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/bullseye pgadmin4 main
Comment

PREVIOUS NEXT
Code Example
Shell :: react-fetch-hook 
Shell :: drf social auth 
Shell :: how to push to new branch in github 
Shell :: git diff files only 
Shell :: git get access to private repository 
Shell :: push subtree to github pages 
Shell :: rename all file extention terminal 
Shell :: ppsspp debian 10 
Shell :: save username and password in git 
Shell :: move file in terminal 
Shell :: what is remote repository 
Shell :: ft2build.h: No such file or directory fedora 
Shell :: vim cut 
Shell :: load .bashrc 
Shell :: Git create a new repository on the command line 
Shell :: install kubectl windows 
Shell :: remove icon from desktop ubuntu 
Shell :: update time in linux 
Shell :: move linux 
Shell :: search everithing for ubuntu 
Shell :: push imagesto docker 
Shell :: git basic commands 
Shell :: store environment variables firebase functions 
Shell :: install vim in vs 
Shell :: rename all files starting with in linux 
Shell :: sed add newline 
Shell :: how to remove dual boot ubuntu from windows 10 
Shell :: docker run --entrypoint bash 
Shell :: git reset hard directory 
Shell :: git remove file from repository 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =