Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Set the password for the user postgres to postgres123 user using:

    Code Block
    sudo passwd postgres
    


  2. Connect to the database using:

    Code Block
    sudo su postgres -c psql
    


  3. In Postgres shell set the password for the postgres user to postgres123 postgres123 using:

    Code Block
    ALTER USER postgres with PASSWORD 'postgres123';
    


  4. Create the mes database with appropriate locale e.g. en_US.UTF-8 using:

    Code Block
    CREATE DATABASE mes WITH ENCODING 'UTF8' LC_COLLATE 'en_US.UTF-8' LC_CTYPE 'en_US.UTF-8' TEMPLATE template0;
    


Installation

Download the installation package

...