skip to Main Content

Error while creating an extension of performance benchmark in Postgresql, I have already made pawankukreja superuser but not working and keeps giving me this Error while following this manual.
Error

Can anyone help me with that?

Thank you.

2

Answers


  1. You’ve to make sure you’ve installed the correct version of Postgres and that you have initialized the server. Additionally, check if you’ve passed the correct path to Postgres in the EXPORT and in the configuration file.

    Typically, you can initialize the PostgreSQL server with this command:

    pg_ctl init
    

    Or

    pg_ctl -D cluster_name start
    
    Login or Signup to reply.
  2. run the following commands:

    initdb
    pg_ctl -D /usr/local/pgsql-12/bin/data -l logfile start
    

    If the error persists, I recommend you to reinstall PostgreSQL and the AGE.

    You can follow this tutorial at devto: How to install pgsql and AGE

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search