Install Postgresql sudo apt install postgresql postgresql-client sudo su – postgres psql ALTER USER postgres PASSWORD ‘postgres’; ALTER SYSTEM SET listen_addresses TO ‘*’; exit exitInstall PgAdmin4If Curl Command not Install …
Tag:
PostgreSQL
PostgreSQL Backup Database and restore How to backup and restore Database * Postgres dump all the Database pg_dumpall dumps all databases in given PostgreSQL installation. Everything goes there. Additionally, it …