Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

FATAL: role "postgres" does not exist

184 views
Skip to first unread message

Bob Middaugh

unread,
Aug 16, 2007, 12:09:23 PM8/16/07
to
Hi all,
Back again with another FreeBSD 'centric question. I'm running the OpenNMS installer which "configures PostgreSQL tables, users, and other miscellaneous settings."

It bombs with this:

Exception in thread "main" org.postgresql.util.PSQLException: Backend start-up failed: org.postgresql.util.PSQLException: FATAL: role "postgres" does not exist

I don't know what it's looking for. When you install the server from ports, it creates the user "pgsql" in /etc/passwd.

How do I get the "role" postgres? Is that a role in Postgresql that I need to create?

opennms# sh install -disU
==============================================================================
OpenNMS Installer Version $Id: Installer.java 3056 2006-03-26 19:39:16Z djgregor $
==============================================================================

Configures PostgreSQL tables, users, and other miscellaneous settings.

Exception in thread "main" org.postgresql.util.PSQLException: Backend start-up failed: org.postgresql.util.PSQLException: FATAL: role "postgres" does not exist

at org.postgresql.jdbc1.AbstractJdbc1Connection.openConnectionV3(AbstractJdbc1Connection.java:460)
at org.postgresql.jdbc1.AbstractJdbc1Connection.openConnection(AbstractJdbc1Connection.java:214)
at org.postgresql.Driver.connect(Driver.java:139)
at java.sql.DriverManager.getConnection(DriverManager.java:512)
at java.sql.DriverManager.getConnection(DriverManager.java:171)
at org.opennms.install.Installer.databaseConnect(Installer.java:613)
at org.opennms.install.Installer.install(Installer.java:195)
at org.opennms.install.Installer.main(Installer.java:2450)


Any suggestions?

Thanks,
Bob

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq

Peter Eisentraut

unread,
Aug 16, 2007, 12:27:53 PM8/16/07
to
Am Donnerstag, 16. August 2007 18:09 schrieb Bob Middaugh:
> Exception in thread "main" org.postgresql.util.PSQLException: Backend
> start-up failed: org.postgresql.util.PSQLException: FATAL: role "postgres"
> does not exist
>
> I don't know what it's looking for.  When you install the server from
> ports, it creates the user "pgsql" in /etc/passwd.

You need to convince your OpenNMS to use the right user, or you need to rename
your pgsql user, or you create a postgres superuser.

--
Peter Eisentraut
http://developer.postgresql.org/~petere/

---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings

Tom Lane

unread,
Aug 16, 2007, 12:28:51 PM8/16/07
to
bob.mi...@comcast.net (Bob Middaugh) writes:
> Exception in thread "main" org.postgresql.util.PSQLException: Backend start-up failed: org.postgresql.util.PSQLException: FATAL: role "postgres" does not exist

> I don't know what it's looking for. When you install the server from ports, it creates the user "pgsql" in /etc/passwd.

FreeBSD is being a bit out of step here --- the default superuser name
is "postgres" in most distros. If you can't persuade the OpenNMS
installer to use a nonstandard superuser name, it's no big deal ---
just create a second superuser role named "postgres". See the CREATE
ROLE command, or use the "createuser" script.

regards, tom lane

Bob Middaugh

unread,
Aug 16, 2007, 2:43:37 PM8/16/07
to

-------------- Original message ----------------------
From: Tom Lane <t...@sss.pgh.pa.us>
> bob.mi...@comcast.net (Bob Middaugh) writes:
> > Exception in thread "main" org.postgresql.util.PSQLException: Backend start-up
> failed: org.postgresql.util.PSQLException: FATAL: role "postgres" does not exist
>
> > I don't know what it's looking for. When you install the server from ports,
> it creates the user "pgsql" in /etc/passwd.
>
> FreeBSD is being a bit out of step here --- the default superuser name
> is "postgres" in most distros. If you can't persuade the OpenNMS
> installer to use a nonstandard superuser name, it's no big deal ---
> just create a second superuser role named "postgres". See the CREATE
> ROLE command, or use the "createuser" script.
>

Thank you both. I su'd to FreeBSD's pgsql user and did createuser which allowed me to add postgres and the OpenNMS script that sets up the DB ran successfully.

You're right Tom, other OS's I've seen referenced elsewhere in regards to postgresql seem to have postgres as the initial superuser. Why the FreeBSD ports maintainer for postgresql chooses pgsql...I dunno.

There is no FreeBSD package (binary), or port, for OpenNMS like there are for a few linux distro's. Hopefully, I'm good to go now, thanks to you guys. If I have any more questions, I'll direct them to your novice mailing list. I started with ports because I figured this was a FreeBSD 'centric ports issue.

Thanks for your help.

Bob

---------------------------(end of broadcast)---------------------------
TIP 4: Have you searched our list archives?

http://archives.postgresql.org

0 new messages