MYSQL 连接数据库失败,请确定数据库用户名,密码设置正确

MYSQL 连接数据库失败,请确定数据库用户名,密码设置正确,第1张

MySQL 服务没有启动,一般是在异常的情况下 MySQL 无法启动导致的,比如无可用的磁盘空间,my.ini 里 MySQL 的 basedir 路径设置错误等;

解决方法,一、在C:\WINDOWS\my.ini 删除该文件, 修改里面的文件路径(如果没有该文件,则新建一个),至少包含basedir,datadir这两个基本的配置(或者直接复制mysql安装文件的mysql server目录下的my.ini文件,修改basedir,datadir这两个基本的配置)。

[mysqld]

# set basedir to installation path, e.g., c:/mysql

# 设置为MYSQL的安装目录

basedir=D:/www/WebServer/MySQL

# set datadir to location of data directory,

# e.g., c:/mysql/data

# 设置为MYSQL的数据目录

datadir=D:/www/WebServer/MySQL/data

另外,要注意

[WinMySQLadmin]

Server=D:/www/WebServer/MySQL/bin/mysqld-nt.exe

user=root

password=xxxxxxxx

#以上是设置WinMySQLadmin的配置

[Client]

user=root

password=xxxxxxxx

如果还是不行的话:MySQL Server Instance Config Wizard,在进行安装下mysql服务。。。。。。。。。。。。。

重新安装了mysql导致了一系列的问题,比如启动不了服务,提示:1045 access denied for user 'root'@'localhost' using password yes等等。

解决方法:

1. 删除mysql程序,利用sc delete mysql删除原来的服务

2. 到WINDOWS的命令行了(‘DOS’ 下),切换到你的MySQL bin目录下。 比如我的是 C:\Program Files\MySQL\MySQL Server 5.1\bin

然后敲下面的粗体的命令。注意你的my.ini位置。

C:\Program Files\MySQL\MySQL Server 5.1\bin>mysqld --defaults-file="C:\Program

Files\MySQL\MySQL Server 5.1\my.ini" --console --skip-grant-tables

090515 22:06:09 [Warning] The syntax '--log' is deprecated and will be removed i

n MySQL 7.0. Please use '--general_log'/'--general_log_file' instead.

090515 22:06:09 [Warning] The syntax '--log_slow_queries' is deprecated and will

be removed in MySQL 7.0. Please use '--slow_query_log'/'--slow_query_log_file'

instead.

090515 22:06:09 [Warning] The syntax '--log' is deprecated and will be removed i

n MySQL 7.0. Please use '--general_log'/'--general_log_file' instead.

090515 22:06:09 [Warning] The syntax '--log_slow_queries' is deprecated and will

be removed in MySQL 7.0. Please use '--slow_query_log'/'--slow_query_log_file'

instead.

090515 22:06:09 [ERROR] The update log is no longer supported by MySQL in versio

n 5.0 and above. It is replaced by the binary log. Now starting MySQL with --log

-bin='' instead.

090515 22:06:09 InnoDB: Startedlog sequence number 0 324221

090515 22:06:09 [Note] mysqld: ready for connections.

Version: '5.1.33-community-log' socket: '' port: 3306 MySQL Community Server

(GPL)

看到这个结果就说明MySQL已经起来了。

再开一个DOS窗口,同样切到mysql bin目录下,

C:\Program Files\MySQL\MySQL Server 5.1\bin>mysql -uroot mysql

Welcome to the MySQL monitor. Commands end with or \g.

Your MySQL connection id is 2

Server version: 5.1.33-community-log MySQL Community Server (GPL)

Type 'help' or '\h' for help. Type '\c' to clear the buffer.

mysql>UPDATE user SET Password=PASSWORD(’newpassword’) where USER=’root’

mysql>FLUSH PRIVILEGES

mysql>quit

然后

C:\Program Files\MySQL\MySQL Server 5.1\bin>mysqladmin shutdown之后正常重启MySQL服务就行了

这个问题跟MYSQL无关,你不装MYSQL都一样有问题。

那么,有“Fatal error: Call ”……说明你的PHP开始工作了。就只是找不到函数。

我自己用的PHP5.2.5,建议你用个比这个高的肯定函数是存在的,就是定位php_mysql.dll的问题。

编辑php.ini,寻找extension_dir,改为

extension_dir = "E:\Apache Software Foundation\php-5.2.5-Win32\ext"这样。注意用单个反斜线,注意整体用双引号装起来,注意每个字母包括双引号冒号和空格都不要搞成全角了。然后记得检查你自己的那个目录下要确实有php_mysql.dll这个文件。

这个“extension=php_mysql.dll”看来你已经是开了。

最后在脚本里,注意每个字母都要是半角的。

还要注意启动PHP的方式,调用的要确实是你修改的这个php.ini

还要注意如果是APACHE+PHP的,改了php.ini之后最好重启动一下APACHE

打字不易,如满意,望采纳。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8678830.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-19
下一篇 2023-04-19

发表评论

登录后才能评论

评论列表(0条)

保存