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

how to install pgadmin in ubuntu on cloud server

wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
echo "deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main" |sudo tee  /etc/apt/sources.list.d/pgdg.list
Comment

PREVIOUS NEXT
Code Example
Shell :: ubuntu apt shortcuts 
Shell :: npm otp-generator 
Shell :: unity for ubuntu 20.04 
Shell :: pnpm upgrade 
Shell :: flutter release mode 
Shell :: terraform VPC setup 
Shell :: adobe flash player linux 
Shell :: rename directory from command line 
Shell :: update git using bash 
Shell :: linux unpack gz 
Shell :: set nemo as default ubuntu 
Shell :: how to install virtualmin on ubuntu 20.04 
Shell :: wsl linux compress siez 
Shell :: 1password cli install 
Shell :: why is do I need to upload my password 3 times git 
Shell :: sharegate powershell exclude file type 
Shell :: brew 
Shell :: apt mailbox debian 10 
Php :: php cors allow origin 
Php :: echo pre print_r 
Php :: get url segment in php 
Php :: php supress errors 
Php :: how to install php curl (linux) apache2 
Php :: laravel password confirmation 
Php :: ReflectionException: Class MagentoFrameworkAppHttpInterceptor does not exist in 
Php :: laravel asset storage not working 
Php :: php what type of variable is it 
Php :: php version 
Php :: php call parent constructor 
Php :: how to remove text tab in wordpress editor 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =