You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two recent installations encountered issues completing installation due to incomplete postgres config info. It turns out not all the config info was copied over from v3.6. In particular, it only mentions the Unix sockets config needed by the installer but not the config needed for the app to communicate to the db:
At a minimum, if GlassFish is running on the same host, it will also need to allow password authentication on localhost. So you will need to modify the “host all all 127.0.0.1” line in your /var/lib/pgsq1/data/pg_hba.conf so that it looks like this:
host all all 127.0.0.1/32 password
Two recent installations encountered issues completing installation due to incomplete postgres config info. It turns out not all the config info was copied over from v3.6. In particular, it only mentions the Unix sockets config needed by the installer but not the config needed for the app to communicate to the db:
At a minimum, if GlassFish is running on the same host, it will also need to allow password authentication on localhost. So you will need to modify the “host all all 127.0.0.1” line in your /var/lib/pgsq1/data/pg_hba.conf so that it looks like this:
host all all 127.0.0.1/32 password
There is more to add to this section not listed but refer to the postgres section of the v3.6 doc:
http://guides.dataverse.org/en/3.6.2/dataverse-installer-main.html#postgresql
Also, we never mention the password for the admin account here:
http://guides.dataverse.org/en/4.0/installation/installation-main.html
The text was updated successfully, but these errors were encountered: