Welcome to Pandora FMS Community!

Find answers, ask questions, and connect with our community around the world.

Welcome to Pandora FMS Community Forums Community support [Solved] New user in need of help!

  • [Solved] New user in need of help!

    Posted by Lord Kendji on March 23, 2010 at 12:42

    Hi,

    I’m running Ubuntu 9.10 and I’m trying to install Pandora FMS. I am trying to use the Pandora 3.0 documentation to help, but I get stuck at  “/usr/bin/mysqladmin password pandora123”, command, at the Console Initial Configuration.
    This far I have come:
    admin2@admin2-desktop:~$ sudo /etc/init.d/mysql start
    [sudo] password for admin2:
    * Starting MySQL database server mysqld                                 [ OK ]
    admin2@admin2-desktop:~$ /usr/bin/mysqladmin password pandora123
    /usr/bin/mysqladmin: connect to server at ‘localhost’ failed
    error: ‘Access denied for user ‘admin2’@’localhost’ (using password: NO)’

    Please note: I am a new user with Pandora and Ubuntu. I discovered the Terminal yesterday, thats how new, but i’m still not stupid.

    Please Help
    Lord Kendji

    Lord Kendji replied 14 years, 11 months ago 2 Members · 4 Replies
  • 4 Replies
  • daniels

    Member
    March 23, 2010 at 20:05
    0 Karma points
    Community rank: tentacle-noob-1 Tentacle noob
    Like it
    Up
    0
    Down
    Drop it
    ::

    Try using sudo again:

    sudo /usr/bin/mysqladmin password pandora123

    Regards.

  • Lord Kendji

    Member
    March 24, 2010 at 11:46
    0 Karma points
    Community rank: tentacle-noob-1 Tentacle noob
    Like it
    Up
    0
    Down
    Drop it
    ::

    Tried, dosen’t work, the same result
    EDIT: is there any way to go around this Command “mysqladmin password pandora123”? to go and give Pandora a password in another way?

  • daniels

    Member
    March 26, 2010 at 18:27
    0 Karma points
    Community rank: tentacle-noob-1 Tentacle noob
    Like it
    Up
    0
    Down
    Drop it
    ::

    Connect in mysql using root account and grant the privileges.

    Log on as root (will ask the mysql password)

    mysql -u root -p

    Grant the privileges (replace user@host and “senha” for your needs):
    grant all privileges on pandora.* to user@host identified by “senha”;

    Regards.

  • Lord Kendji

    Member
    March 29, 2010 at 12:15
    0 Karma points
    Community rank: tentacle-noob-1 Tentacle noob
    Like it
    Up
    0
    Down
    Drop it
    ::

    Seems to be working, thatnks 😀