Answers for "install pol postgresql"

0

how to install postgresql in manjaro

sudo pacman -S yay
yay -S postgresql pgadmin4

sudo -u postgres -i
initdb --locale $LANG -E UTF8 -D '/var/lib/postgres/data/'
exit

sudo systemctl enable --now postgresql
sudo systemctl status postgresql
Posted by: Guest on February-07-2021
0

install postgresql

yum install postgresql-server postgresql-contrib -y
postgresql-setup initdb
systemctl enable postgresql 
sudo systemctl start postgresql
systemctl status postgresql
Posted by: Guest on January-08-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language