Home > Database > phpMyAdmin > body text

How to log in to phpmyadmin using an empty password

藏色散人
Release: 2021-04-26 17:04:21
forward
3242 people have browsed it

phpmyadmin

## Method, I hope it will be helpful to friends in need!
phpmyadmin connects to the mysql database. For security reasons,

does not allow the use of empty passwords to connect to the database by default

. Because databases generally have password access set up. But if it is only used for testing in the local environment, you need to fill in the password every once in a while, which is not very convenient.

If you have not modified the configuration and use an empty password to log in, phpmyadmin will return an error message: ######Login without a password is forbidden by configuration (see AllowNoPassword)##### ####We can modify the configuration file of phpmyadmin and set it to use an empty password to connect to the database ############The configuration modification is as follows: ###### ###For example: the database account is root , the password is empty######Open the ###libraries/config.default.php### file in the phpmyadmin installation directory, find the corresponding configuration, and modify it according to the following values. ###
// MySQL user$cfg['Servers'][$i]['user'] = 'root';
// MySQL password$cfg['Servers'][$i]['password'] = '';
// Whether to try to connect without password$cfg['Servers'][$i]['nopassword'] = true;
// whether to allow login of any user without a password$cfg['Servers'][$i]['AllowNoPassword'] = true;
Copy after login
######

The above is the detailed content of How to log in to phpmyadmin using an empty password. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!