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 :: push a new local repository to github. 
Shell :: mysql backup dump docker file 
Shell :: gatsby image 
Shell :: bash check in gem is installed 
Shell :: which path of executable powershell 
Shell :: powershell sharepoint 2010 update item 
Shell :: how to create a script raspberry pi 
Shell :: install anydesk to kali 
Shell :: how to highlight code in github editor 
Shell :: install kube-vip 
Shell :: how to zip a folder in putty 
Shell :: importerror no module named numpy ubuntu 
Shell :: shell thousand comma in number 
Shell :: ansible ping ad hoc 
Shell :: what is vi in linux 
Shell :: virtualbox shared folder linux 
Shell :: download sklearn linux 
Shell :: git local branch track remote 
Shell :: delete remote git branches matching pattern 
Shell :: Use R markdown in github README 
Shell :: close adb server 
Shell :: instal ng2 search module 
Shell :: docker tag image 
Shell :: sed substitute a word in a file by the content in another file 
Shell :: xargs 
Shell :: homebrew tomcat 
Shell :: create gz in ubuntu 
Shell :: gatsby-plugin-typography 
Shell :: how to activate conda/Anaconda environment 
Shell :: append a string in all files name linux 
ADD CONTENT
Topic
Content
Source link
Name
8+6 =