Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The default login of phpMyAdmin under XAMPP does not require verification.

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article shows you the default login of phpMyAdmin under XAMPP does not need to verify the solution, the content is concise and easy to understand, absolutely can make your eyes bright, through the detailed introduction of this article, I hope you can get something.

XAMPP default phpMyAdmin login does not require verification, we need to make some settings. Including root user password settings, and phpMyAdmin configuration file settings.

1. Root user password setting.

You can choose to do it at the command prompt. Enter xampp/mysql/bin under the xampp installation directory

Type the command "mysqladmin-u root-p password your password * *" and type enter to complete the setting.

You can also directly enter the phpmyadmin, mysql library in the user table, there is root information, you can set the password inside. It is important to note that it is best to use the command to set it, using the password function.

Update user set password=PASSWORD ('123456') where user='root'

two。 Modify the configuration file for phpMyAdmin.

Go to the phpmyadmin directory under xampp and enter the configuration file config.inc.php into the file. You can see the following:

/ * Authentication type and info * / $cfg ['Servers'] [$I] [' auth_type'] = 'http';$cfg [' Servers'] [$I] ['user'] =' root';$cfg ['Servers'] [$I] [' password'] = "; $cfg ['Servers'] [$I] [' extension'] = 'mysql';$cfg [' Servers'] [$I] ['AllowNoPassword'] = true;$cfg [' Lang'] ="

Pay attention to the red display. You will OK if you change it to this. To re-enter phpMyAdmin, you need to verify your account password.

The above is the solution to the default login of phpMyAdmin under XAMPP without verification. Have you learned the knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

  • What are the types of code comments in HTML

    This article is about what code comment types are in HTML. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look. HTML comments in HTML code, the text between the

    © 2024 shulou.com SLNews company. All rights reserved.

    12
    Report