Changes between Version 90 and Version 91 of FAQ


Ignore:
Timestamp:
Feb 23, 2012, 3:19:07 PM (12 years ago)
Author:
Dimitar Misev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v90 v91  
    8484 * There are several possible reasons:
    8585  1. '''Execution permissions.''' Run the script as the user owning the postgresql processes. Use '''only''' that user for further work with rasdaman (see Installation Guide). If you use Ubuntu and installed postgres with apt-get, then logging in as user '''postgres''' is an option; I personally like to have a separate user ''rasdaman'' for this purpose where I also can set paths etc. to the executables once and for all. (The postgres db does not allow full access to rasdaman tools, because they do not run under the administrative user that launched the db server process.)
     86
     87  Alternatively, make sure that the operating system user under which you run `create_db.sh` can be authenticated via the '''ident''' method, which can be set in `pg_hba.conf`. E.g. if user is "rasdaman", then in `pg_hba.conf` you should have at least:
     88{{{
     89# TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD
     90local   all         rasdaman                          ident
     91}}}
    8692  2. '''Blocked incoming connections.''' Another cause of the problem might be that postgres does not allow incoming connections. If you have Postgres v8 or more recent, modify file "postgresl.conf" and set (uncomment) the option
    8793{{{