Hi Victoria,

Victoria E. del Cerro wrote:
> OS: Linux (Ubuntu), postgresql 8.1, dspace-1.4.1
> I am new to postgresql.
> I am trying install dspace as per the instruction given at the following 
> site :
>
> http://dspace.org/technology/system-docs/install.html 
> <http://dspace.org/technology/system-docs/install.html>
>
> Item no. 4 under 'Quick Installation Steps' when iI execute the commands :
> createuser -U postgres -d -A -P dspace ; createdb -U dspace -E UNICODE 
> dspace
>
> the following message comes up :
>
>
> createdb: could not connect to database template1: FATAL:  IDENT 
> authentication failed for user "dspace
>
> How will I solve the above problem?
>   

The -U option doesn't seem to be working in the expected manner. You 
could use sudo to get around this: -

# Iff the createuser command failed:
sudo -u postgres createuser -U postgres -d -P dspace

# and then:
sudo -u dspace createdb -U dspace -E UNICODE dspace

(The -U options ought to be redundant if you do it this way).

HTH

Best regards,

jim

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
DSpace-tech mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dspace-tech

Reply via email to