windows下:
切换到MySQL/bin目录下
E:\wamp\bin\mysql\mysql5.6.12\bin>
mysqld --defaults-file="E:\wamp\bin\mysql\mysql5.6.12\my.ini" --console --skip-grant-tables
2015-01-22 14:01:34 0 [Warning] TIMESTAMP with implicit DEFAULT value is depreca
ted. Please use --explicit_defaults_for_timestamp server option (see documentati
on for more details).
2015-01-22 14:01:34 3700 [Note] Plugin 'FEDERATED' is disabled.
2015-01-22 14:01:34 3700 [Note] InnoDB: The InnoDB memory heap is disabled
2015-01-22 14:01:34 3700 [Note] InnoDB: Mutexes and rw_locks use Windows interlo
cked functions
2015-01-22 14:01:34 3700 [Note] InnoDB: Compressed tables use zlib 1.2.3
2015-01-22 14:01:34 3700 [Note] InnoDB: Not using CPU crc32 instructions
2015-01-22 14:01:34 3700 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2015-01-22 14:01:34 3700 [Note] InnoDB: Completed initialization of buffer pool
2015-01-22 14:01:34 3700 [Note] InnoDB: Highest supported file format is Barracu
da.
2015-01-22 14:01:35 3700 [Note] InnoDB: 128 rollback segment(s) are active.
2015-01-22 14:01:35 3700 [Note] InnoDB: Waiting for purge to start
2015-01-22 14:01:35 3700 [Note] InnoDB: 5.6.12 started; log sequence number 1626
077
2015-01-22 14:01:35 3700 [Note] Server hostname (bind-address): '*'; port: 3306
2015-01-22 14:01:35 3700 [Note] IPv6 is available.
2015-01-22 14:01:35 3700 [Note] - '::' resolves to '::';
2015-01-22 14:01:35 3700 [Note] Server socket created on IP: '::'.
2015-01-22 14:01:35 3700 [Note] mysqld: ready for connections.
Version: '5.6.12' socket: '' port: 3306 MySQL Community Server (GPL)
看到这个结果就说明MySQL已经起来了。
再开一个DOS窗口,同样切到mysql bin目录下,
E:\wamp\bin\mysql\mysql5.6.12\bin>mysql -u root mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.6.12 MySQL Community Server (GPL)
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
修改密码~~成功
mysql> UPDATE user SET Password=PASSWORD(’123456’) where USER=’root’;
ERROR 1054 (42S22): Unknown column '’root’' in 'where clause'
mysql> update user set password=PASSWORD('123456') where user='root';
Query OK, 3 rows affected (0.03 sec)
Rows matched: 3 Changed: 3 Warnings: 0
分享到:
相关推荐
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) 解决: 1.打开在创建mysql容器时挂载的conf目录下的mysqld.cnf(如下文件) 我创建docker的姿势 2.进入mysqlId.cnf文件中在...
首先是不知道怎么忽然mysql用命令行,workbench都登录不了,都提示’Access denied for user ‘root’@’localhost’。 数据库卸载重装了几次都不行。好像感觉数据清理不干净。解决的过程遇到的坑,这里记录分享下。...
MySQL密码忘了,可以进行重置设置。安全模式的进入,操作。
在Ubuntu 18.04上安装MySQL时,有时可能会遇到“access denied for user 'root'@'localhost'”的错误,这意味着系统无法以root用户的身份连接到MySQL服务器。这通常是由于权限设置不当或者root用户的密码丢失导致的...
主要介绍了mysql Access denied for user ‘root’@’localhost’ (using password: YES)解决方法,本文给出详细的解决步骤及操作注释,需要的朋友可以参考下
在Linux环境中,当你尝试使用`mysql`命令连接到MySQL数据库时,可能会遇到“Access denied for user 'root'@'localhost' (using password: YES)”的错误。这个错误通常表示你的MySQL服务器拒绝了你的登录尝试,可能...
近些时间在开始学MySQL,安装挺顺利的,按照网上现成的教程就能安装成功。 但是,在我开开心心地输入 mysql -uroot -p ... Access denied for user 'root'@'localhost'...Access denied for user 'root'@'localhost' (usi
Linux MySQL 忘记密码的多种解决方法 ...今天,我们将讨论如何解决 Linux MySQL...我们提供了三种解决 Linux MySQL 忘记密码的问题的方法,每种方法都可以帮助您解决 Access denied for user 'root'@'localhost' 的问题。
Unhandled rejection SequelizeAccessDeniedError: Access denied for user 'lupeng'@'localhost' (using password: YES) 这是Node在使用Sequlize连接Mysql数据时报的错,关键看冒号后面的错误:访问拒绝,关键是...
当遇到“Access denied for user 'root'@'localhost'”这样的MySQL登录错误时,通常意味着系统拒绝了root用户的登录请求,这可能是由于多种原因引起的,包括但不限于密码错误、权限设置问题或者MySQL配置文件的变动...
在使用MySQL数据库时,有时会出现一个常见的错误:`ERROR 1045 (28000): Access denied for user "root"@"localhost" (using password: YES)`。这个错误表明,你尝试用root用户登录MySQL,但系统拒绝了你的访问,...
ERROR 1044 (42000): Access denied for user ”@’localhost’ to database ‘python’ 2. 解决方法: 执行以下命令进入控制台: mysql –user=root -p 输入root用户的密码即可进入mysql控制台: 创建数据库: ...
主要给大家介绍了如何解决mysql在创建数据库后出现:Access denied for user 'root'@'%' to database 'xxx'的错误提示,文中介绍的非常详细,需要的朋友可以参考借鉴,下面来一起看看吧。
java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES) 提示的是用户访问被拒绝,原因是密码不正确,但是我们明明配置的是正确的密码,原因就在yml中: spring: datasource: ...
主要介绍了Web项目打成war包部署到tomcat时报MySQL Access denied for user 'root'@'localhost' (using password: YES)错误解决方案(推),需要的朋友可以参考下
错误信息显示为“ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)”。这个问题可能是由于权限设置不正确或MySQL配置文件的某些设置导致的。以下是解决此问题的两个主要...
前言 最近学习linux,然后将win换成了ubuntu。之前安装的mysql也不能用了,现在将在ubuntu18.0.4上安装mysql并将...登录时出现ERROR 1698 (28000): Access denied for user ‘root’@‘localhost’。这应该时我们之前
ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO) 第一步:编辑mysql安装目录中的配置文件my.ini,在[mysqld]这个条目下加入 skip-grant-tables 如下图: 保存退出后 第二...