psql: FATAL: user "root" does not exist createdb: database creation failed

  • Follow



 Hi to all I'm Jeoffrey, and I'm a newbie to postgreSQL. My problem is
that when i execute the command createdb <database name> i always get a

[root@webdata root]# createdb ibmadb
psql: FATAL:  user "root" does not exist
createdb: database creation failed

Then I tried to create the user root by the command:

createuser <username> and i always get this message also:

[root@webdata root]# createuser
Enter name of user to add: root
Shall the new user be allowed to create databases? (y/n) y
Shall the new user be allowed to create more new users? (y/n) n
psql: FATAL:  user "root" does not exist
createuser: creation of user "root" failed


my postgresql version is 7.3.4 and my OS is FEDORA CORE 1 x86_64 bit
architecture.

What is wrong about it? please help.


Thanks,

Jeoffrey

---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
      subscribe-nomail command to majordomo@postgresql.org so that your
      message can get through to the mailing list cleanly

0
Reply jeoff (1) 11/16/2004 5:55:30 AM

execute these as the postgres user:

su - postgres

One option is to create a super-user with something like:

postgres$ createuser -d -a -P jeoff

then:

jeoff$ createdb ibmadb

then do administrative things with that user. I would advise *NOT* using 
root. If this is a tightly controlled (non-shared) machine, you could make 
a super user as your normal unix login (which hopefull is not root). 
Ideally you'll only need root to start the postgres service.



On Tue, 16 Nov 2004, Jeoffrey L. Palacio wrote:

>
>
> Hi to all I'm Jeoffrey, and I'm a newbie to postgreSQL. My problem is
> that when i execute the command createdb <database name> i always get a
>
> [root@webdata root]# createdb ibmadb
> psql: FATAL:  user "root" does not exist
> createdb: database creation failed
>
> Then I tried to create the user root by the command:
>
> createuser <username> and i always get this message also:
>
> [root@webdata root]# createuser
> Enter name of user to add: root
> Shall the new user be allowed to create databases? (y/n) y
> Shall the new user be allowed to create more new users? (y/n) n
> psql: FATAL:  user "root" does not exist
> createuser: creation of user "root" failed
>
>
> my postgresql version is 7.3.4 and my OS is FEDORA CORE 1 x86_64 bit
> architecture.
>
> What is wrong about it? please help.
>
>
> Thanks,
>
> Jeoffrey
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
>      subscribe-nomail command to majordomo@postgresql.org so that your
>      message can get through to the mailing list cleanly
>

[ \ /
[ >X<   Christian Fowler      | spider AT viovio.com
[ / \   http://www.viovio.com | http://www.tikipro.org

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
    (send "unregister YourEmailAddressHere" to majordomo@postgresql.org)

0
Reply spider 11/16/2004 8:17:02 PM


Try this 

createdb -U postgres  ibmadb


On Tue, 16 Nov 2004 13:55:30 +0800 (PHT), Jeoffrey L. Palacio
<jeoff@ibma.org.ph> wrote:
> 
> 
>  Hi to all I'm Jeoffrey, and I'm a newbie to postgreSQL. My problem is
> that when i execute the command createdb <database name> i always get a
> 
> [root@webdata root]# createdb ibmadb
> psql: FATAL:  user "root" does not exist
> createdb: database creation failed
> 
> Then I tried to create the user root by the command:
> 
> createuser <username> and i always get this message also:
> 
> [root@webdata root]# createuser
> Enter name of user to add: root
> Shall the new user be allowed to create databases? (y/n) y
> Shall the new user be allowed to create more new users? (y/n) n
> psql: FATAL:  user "root" does not exist
> createuser: creation of user "root" failed
> 
> my postgresql version is 7.3.4 and my OS is FEDORA CORE 1 x86_64 bit
> architecture.
> 
> What is wrong about it? please help.
> 
> Thanks,
> 
> Jeoffrey
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
>       subscribe-nomail command to majordomo@postgresql.org so that your
>       message can get through to the mailing list cleanly
> 


-- 
With Best Regards,
Vishal Kashyap.
Did you know SaiPACS is one and only PACS
Management tool.
http://saihertz.com,
http://vishalkashyap.tk

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

               http://www.postgresql.org/docs/faqs/FAQ.html

0
Reply vishalonlist 11/17/2004 1:53:58 PM

2 Replies
2338 Views

(page loaded in 0.043 seconds)

Similiar Articles:





7/20/2012 5:30:04 AM


Reply: