如何使用密码访问phpmyadmin
如果我给phpmyadmin/Wampserver(界面)分配了密码,我该如何访问它,有没有可以输入密码的页面?
how do I access phpmyadmin/Wampserver(interface) if I have assigned it a password, is there any page where you can input the password?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以在配置中设置自动访问,只需将 $cfg['Servers'][$i]['AllowNoPassword'] 更改为 true 参数(如果不是)。
示例:
$cfg['服务器'][$i]['AllowNoPassword'] = true;
它将允许您根据您的通行证和登录信息自动访问您的 phpmyadmin。
如果您想在 phpmyadmin 页面中输入您自己的登录名和密码,只需在配置文件中将 true 参数更改回 false 即可。
祝你好运。
You can set the automatic access in your configuration just change $cfg['Servers'][$i]['AllowNoPassword'] to true argument if it's not.
Example:
$cfg['Servers'][$i]['AllowNoPassword'] = true;
It will allow you to automatically access to your phpmyadmin base on your pass and login.
If you would like to input your own login and password in phpmyadmin page just change the true argument back to false in the config file.
good luck.
这是一篇旧文章,但如果有人需要知道
转到您的 xampp 文件夹,打开 phpmyadmin 文件夹
在文本编辑器上打开 config.inc php 文件
您应该看到
$cfg['服务器'][$i]['密码'] = '';
只需在其中输入您的密码,保存并尝试再次连接
例如:$cfg['服务器'][$i]['密码'] = '1234';
This is an old post, but in case anyone needs to know
Go to your xampp folder, open phpmyadmin folder
Open the config.inc php file on text editor
You should see
$cfg['Servers'][$i]['password'] = '';
Just input your password in there, save it and try connecting again
example: $cfg['Servers'][$i]['password'] = '1234';
当您通过以
phpmyadmin
结尾的地址访问主机时,系统将提示您输入分配的用户名和密码。如果您没有指定用户名,请尝试“root”尝试:
这是来自 如何设置您自己的 Wampserver
When you access your host via an address which ends with
phpmyadmin
, you will be prompted for the username and password you assigned. If you didn't specify a username, try 'root'Try:
This was from How to setup Your Own Wampserver
尝试使用root作为用户名,并让密码为空(不要输入任何内容)
这对我有用。
Try root as username and let the password empty ( don't type anything )
It worked for me.