Results 1 to 3 of 3

Thread: PHPMyAdmin: what is the "MySQL application password for phpmyadmin"?

  1. #1
    Join Date
    Jun 2012
    Beans
    41

    PHPMyAdmin: what is the "MySQL application password for phpmyadmin"?

    During PHPMyAdmin installation, it first asks for the existing MySQL root password, but then it asks for a second password called "MySQL application password for phpmyadmin". The text provided was "please provide a password for phpmyadmin to register with the database server. If left blank, a random password will be generated".

    What is this password used for? I noticed I can log in from the phpmyadmin web homepage without using this second password.

  2. #2
    Join Date
    Aug 2009
    Location
    Makati City, Philippines
    Beans
    2,269
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: PHPMyAdmin: what is the "MySQL application password for phpmyadmin"?

    not using phpmyadmin but you can login to the mysql via command line,
    then see it the phpmyadmin already has a user
    Code:
    mysql> use mysql;
    mysql> select user,host,password from user;
    If so, then you just set a new password:
    Code:
    mysql> SET PASSWORD FOR 'phpmyadmin'@'localhost' = PASSWORD('passxxx');

  3. #3
    Join Date
    Jun 2012
    Beans
    41

    Re: PHPMyAdmin: what is the "MySQL application password for phpmyadmin"?

    thanks, I realized that "phpmyadmin" is a user in the mysql database.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •