Skip to main content

Testing the Success of the installation

Using pgAdmin

Please enter master password

Using SQL Shell(psql) app

SQL shell(psql) app

Using Windows command prompt CMD

  • Add the PostgreSQL Tools (bin) directory to the PATH variable

  • create database demo: create -U <super(user)> <dbname>

    createdb -U postgres demo
  • psql: psql -U <super(user)> -d dbname

    psql -U postgres -d demo