Posts Tagged ‘nuxeo’

postgresql setup

Thursday, July 29th, 2010

error when trying to do

psql -U postgres template1

psql: FATAL: Ident authentication failed for user “postgres”

Explanation:- access permission in /var/lib/pgsql/data/pg_hba.conf
this problem was solved by editing ” /var/lib/pgsql/data/pg_hba.conf” file
This file decide how the host are allowed to connect  and which databases they can use.

Modify the entry as this

local   all         all                              trust

host    all         all         127.0.0.1/32         trust

running DM nuxeo with JBOSS

Sunday, July 25th, 2010

My DM nuxeo on Jboss was not able to access from the  LAN

It was because by default JBossAS binds its services to localhost (127.0.0.1) *by default*, instead of binding to all available interfaces (0.0.0.0). This was primarily done for security reasons because of concerns of users going to production without having secured their servers properly.

We can enable it by running “/opt/nuxeo-dm/bin/run.sh -b 0.0.0.0 “