phpMyAdmin的登录名是什么? [英] What's the login for phpMyAdmin?

查看:106
本文介绍了phpMyAdmin的登录名是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我下载了最新版本的XAMPP(v.1.7.7),并决定启动一个数据库.当我打开phpMyAdmin时,它会提醒我有可用的phpMyAdmin新版本.我从网上下载了该文件,然后删除了旧版本的phpMyAdmin并将其替换为当前版本(v.3.5.1).我打开它,并显示了一个登录屏幕.我没有密码输入"root",但它提醒我我需要一个.我不知道任何密码,也不知道任何其他登录方式.我将如何登录以输入phpMyAdmin?

I downloaded the most recent version of XAMPP (v.1.7.7) and decided start a database. When I opened phpMyAdmin, it alerts me there is a new version of phpMyAdmin available. I downloaded it from online, and I deleted the old version of phpMyAdmin and replaced it with the current version (v.3.5.1). I opened it up and it came up with a log-in screen. I entered in "root" without a password, but it alerts me I need one. I don't know any password nor I know any alternative log-ins. How would I log-in to enter phpMyAdmin?

推荐答案

启用不带密码的登录,以使其完全像以前一样工作

您需要更改您的配置文件.打开您的XAMPP安装目录,浏览到文件夹phpmyadmin,然后查找名为config.inc.php的文件.如果还没有,则首先需要将config.sample.inc.php复制到config.inc.php.然后,只需打开config.inc.php并找到以下行:

Enabling login without a password, to make it work exactly as before

You'll need to change your configuration file. Open up your XAMPP installation directory, browse to the folder phpmyadmin, and look for a file called config.inc.php. If there isn't one already, you'll first need to copy config.sample.inc.php to config.inc.php. Then, just open config.inc.php and find this line:

$cfg['Servers'][$i]['AllowNoPassword'] = false;

将其更改为:

$cfg['Servers'][$i]['AllowNoPassword'] = true;

或者,只需添加密码

打开命令提示符并键入,然后按 Enter :

mysqladmin -u root -p pass

当询问您当前密码时,只需再次按 Enter .然后设置新密码,并使用该密码登录到phpMyAdmin.

When it asks you for the current password, just press Enter again. Then set the new password, and log in to phpMyAdmin using that.

这篇关于phpMyAdmin的登录名是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆