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 :: unmount nfs 
Shell :: start mariadb on linux terminal 
Shell :: add router to vue 
Shell :: gitignore ignore everything except 
Shell :: shared folder virtualbox ubuntu 
Shell :: extract tar to destination 
Shell :: powershell elevate to admin within a function 
Shell :: foreach powershell 
Shell :: unzip folder linux 
Shell :: how to set up git for github 
Shell :: how to remove node modules from github 
Shell :: replace all instances 
Shell :: kill process running on port linux 
Shell :: find location for powershell profile ps1 file 
Shell :: install cv2 
Shell :: vim move line down 
Shell :: github commit author name 
Shell :: ffmpeg overwrite 
Shell :: copy folder from on server machine 
Shell :: make executable bash script 
Shell :: uptime cmd 
Shell :: create csr ubuntu 
Shell :: How to install LAMP in CentOs 7? 
Shell :: pause in bash 
Shell :: ubuntu version 
Shell :: git amend commit message after push 
Shell :: install angular cli version 
Shell :: infinite loop bash 
Shell :: install yt-dlp windows 
Shell :: open jupyter notebook with anaconda in powershell 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =