search
HomeBackend DevelopmentPHP TutorialSummary of solutions to why phpmyadmin cannot log in_PHP tutorial
Summary of solutions to why phpmyadmin cannot log in_PHP tutorialJul 13, 2016 am 10:56 AM
phpmyadminundercannotexistdevelopSummarizemethodLog inofsolve

The following summarizes some solutions to the problem that phpmyadmin cannot log in during development. Friends in need can refer to it.

Error

MySQL returns:

#1045 - Access denied for user 'root'@'localhost' (using password: YES)

Find the config.inc.php file in the phpmyadmin directory and modify the following location

The code is as follows
 代码如下 复制代码

$cfg['Servers'][$i]['user'] = 'user';
$cfg['Servers'][$i]['password'] = 'password';

Copy code


$cfg['Servers'][$i]['user'] = 'user';

$cfg['Servers'][$i]['password'] = 'password';



Prompt error: Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly. From the prompt, you can see that it is a PHP problem. Search the Internet to find a solution and try it. Success:

1. In the PHP installation directory, change the value of session.auto_start in php.ini to 1 (start), the default is 0 (disable)

2. Create a folder tmp in the php directory (such as C:/php/tmp), and set the tmp attribute to every one full control

3. Find the session.save_path line in php.ini, set it to session.save_path = “C:/php/tmp”, and remove the semicolon in front of it (the above C:/php/tmp is set according to your actual situation )
4. Restart the computer, everything is OK, and you can log in to both versions of phpMyAdmin


It will be a little different in Linux, the error is as follows.

An error will be prompted when logging in. The error message content is the same, but the code may be different. Because I don’t know where the problem lies, I often change this and that when checking and testing. The error message is as follows:

#2002 Cannot log in to the MySQL server

or

#2003 Cannot log in to the MySQL server

or

 代码如下 复制代码

cp /usr/share/phpMyAdmin/config.sample.inc.php /etc/phpMyAdmin/config.inc.php

#1045 Cannot log in to the MySQL server

2. Solution
 代码如下 复制代码

vim /etc/phpMyAdmin/config.inc.php

I spent a lot of time yesterday but couldn’t figure it out, and I couldn’t find the answer on the Internet. I went out for fun today and solved this problem just after I came back in the evening. It's actually very simple.

Directly cp copy the configuration file sample config.sample.inc.php file in the phpMyAdmin installation directory to the configuration file directory (the following only uses the default directory when using the installation method provided here)

The code is as follows
 代码如下 复制代码

$cfg['blowfish_secret'] = '';

Copy code

 代码如下 复制代码

$cfg['blowfish_secret'] = 'leosn';

cp /usr/share/phpMyAdmin/config.sample.inc.php /etc/phpMyAdmin/config.inc.php
Then use vim to edit and modify some configurations directly in the system (also recorded in the installation method mentioned above)
The code is as follows Copy code
vim /etc/phpMyAdmin/config.inc.php Note: If you need to use phpMyAdmin through remote server debugging, you need to add the blowfish_secret content definition cookie and find the line of code:
The code is as follows Copy code
$cfg['blowfish_secret'] = ''; Set content as COOKIE
The code is as follows Copy code
$cfg['blowfish_secret'] = 'leosn';

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632164.htmlTechArticleThe following summarizes some solutions to the problem that phpmyadmin cannot log in during development. Friends in need can refer to it. Error MySQL returns: #1045 - Access denied for user 'root'@'localh...
Statement
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
phpmyadmin怎么设置主键phpmyadmin怎么设置主键Apr 07, 2024 pm 02:54 PM

表的主键是一列或多列,用于唯一标识表中每条记录。设置主键的步骤如下:登录 phpMyAdmin。选择数据库和表。勾选要作为主键的列。点击 "保存更改"。主键具有数据完整性、查找速度和关系建模方面的好处。

phpmyadmin怎么添加外键phpmyadmin怎么添加外键Apr 07, 2024 pm 02:36 PM

在 phpMyAdmin 中添加外键可以通过以下步骤实现:选择包含外键的父表。编辑父表结构,在“列”中添加新列。启用外键约束,选择引用表和键。设置更新/删除操作。保存更改。

phpmyadmin账号密码是什么phpmyadmin账号密码是什么Apr 07, 2024 pm 01:09 PM

PHPMyAdmin 的默认用户名和密码为 root 和空。为了安全起见,建议更改默认密码。更改密码的方法:1. 登录 PHPMyAdmin;2. 选择 "privileges";3. 输入新密码并保存。忘记密码时,可通过停止 MySQL 服务并编辑配置文件的方式重置密码:1. 添加 skip-grant-tables 行;2. 登录 MySQL 命令行并重置 root 密码;3. 刷新权限表;4. 删除 skip-grant-tables 行,重启 MySQL 服务。

phpmyadmin日志在哪里phpmyadmin日志在哪里Apr 07, 2024 pm 12:57 PM

PHPMyAdmin日志文件的默认位置:Linux/Unix/macOS:/var/log/phpmyadminWindows:C:\xampp\phpMyAdmin\logs\日志文件用途:故障排除审计安全性

phpmyadmin怎么删除数据表phpmyadmin怎么删除数据表Apr 07, 2024 pm 03:00 PM

phpMyAdmin 中删除数据表的步骤:选择数据库和数据表;点击“操作”选项卡;选择“删除”选项;确认并执行删除操作。

为什么phpmyadmin拒绝访问为什么phpmyadmin拒绝访问Apr 07, 2024 pm 01:03 PM

phpMyAdmin 拒绝访问的原因及解决方案:认证失败:检查用户名和密码是否正确。服务器配置错误:调整防火墙设置,检查数据库端口是否正确。权限问题:授予用户对数据库的访问权限。会话超时:刷新浏览器页面重新连接。phpMyAdmin 配置错误:检查配置文件和文件权限,确保启用了必需的 Apache 模块。服务器问题:等待一段时间后再重试或联系主机提供商。

phpmyadmin漏洞属于什么漏洞phpmyadmin漏洞属于什么漏洞Apr 07, 2024 pm 01:36 PM

phpMyAdmin 易受多种漏洞影响,包括:1. SQL 注入漏洞;2. 跨站点脚本 (XSS) 漏洞;3. 远程代码执行 (RCE) 漏洞;4. 本地文件包含 (LFI) 漏洞;5. 信息泄露漏洞;6. 权限提升漏洞。

phpmyadmin关联视图在哪phpmyadmin关联视图在哪Apr 07, 2024 pm 01:00 PM

可以在 phpMyAdmin 中“结构”选项卡下的“视图”子菜单中找到关联视图。要访问它们,只需选择数据库、点击“结构”选项卡、然后点击“视图”子菜单。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment