Zend Sever application deployment

Discussion in 'Server Operation' started by Tian, Jun 17, 2013.

  1. Tian

    Tian New Member

    Hi All I deployed the application phpMyAdmin on Zend server 6 but am receiving the following error message.

    #1045 - Access denied for user 'admin'@'localhost' (using password: YES)


    phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server.
     
  2. davefrooney

    davefrooney Member

    Try logging in with the user 'root'
     
  3. Tian

    Tian New Member

    Call me a begginer

    But how do i do that, whenever i try accessing it from the address bar it gives that error?
     
  4. davefrooney

    davefrooney Member

    do you have shell access? If you do can you login into mysql with the following

    Code:
    mysql -u root -p'yourpassword'
    type the following and see it the admin user exists

    Code:
    select user from mysql.user;
     
  5. Tian

    Tian New Member

    ok i seem to have figured it out, during installation i put in a user and password were i should have left root without a password.

    Thanks alot.
     

Share This Page