Answers for "postgres linux install"

SQL
14

postgresql install ubuntu

sudo apt update
sudo apt install postgresql postgresql-contrib

sudo -u postgres createuser --interactive

sudo -u postgres createdb database1
Posted by: Guest on June-22-2020
4

install postman in linux

Install Postman in Linux

Download Postman by running following command in your Linux system:

$ wget https://dl.pstmn.io/download/latest/linux64 -O postman-linux-x64.tar.gz

Extract the downloaded file by running the following command in /opt directory:

$ sudo tar -xvzf postman-linux-x64.tar.gz -C /opt

Finally, create a symbolic link running following command in terminal:

$ sudo ln -s /opt/Postman/Postman /usr/bin/postman


For Desktop icons:

[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=postman
Icon=/home/USERNAME/Postman/app/resources/app/assets/icon.png
Terminal=false
Type=Application
Categories=Development;
Posted by: Guest on January-07-2021
3

install postgresql ubuntu

sudo apt install postgresql postgresql-contrib
Posted by: Guest on July-18-2020
0

how to install postgres in ubuntu

root@pooja-virtual-machine:~# apt-get install postgresql-11
Posted by: Guest on April-29-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language