位置: 编程技术 - 正文
推荐整理分享mysql ERROR 1044 (42000): Access denied for user ''@'localhost' to database,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
1. 问题描述:
在MySQL控制台下创建数据库出现以下信息:
mysql> CREATE DATABASE python; ERROR (): Access denied for user ''@'localhost' to database 'python'
2. 解决方法:
执行以下命令进入控制台:
mysql --user=root -p
输入root用户的密码即可进入mysql控制台:
创建数据库:
create database python;
显示所有数据库:
show databases;
如下:
www.linuxidc.com @www.linuxidc.com:~$ mysql --user=root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 4 Server version: 5.6. MySQL Community Server (GPL)
Copyright (c) , ,Oracleand/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> create database python; Query OK, 1 row affected (0. sec)
mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | python | | test | +--------------------+ 5 rows in set (0. sec)
mysql>
3. OK, 以上方法不是最好的, 但却是简单可行的,Enjoy it!!!
4、方法四:
这几天用空密码登录mysql后,然后修改mysql默认密码,使用mysql表出现过这个问题,提示:ERROR (): Access denied for user ''@'localhost' to database 'mysql'。网上找了一些方法,终于搞定了。
我用的是xampp集成的mysql,之前空密码能登进去phpmyadmin,但怎么也进不去phpmyadmin的系统表后来解决成功发现是因为mysql数据库的user表里,存在用户名为空的账户即匿名账户,导致登录的时候是虽然用的是root,但实际是匿名登录的,通过错误提示里的''@'localhost'可以看出来。我用方法一解决了问题,方法一:在my.ini的[mysqld]字段加入:
skip-grant-tables
重启mysql服务,这时的mysql不需要密码即可登录数据库然后进入mysql
mysql>use mysql;mysql>update user set password=password('新密码') WHERE User='root'; mysql>flush privileges;
运行之后最后去掉my.ini中的skip-grant-tables,重启mysqld即可。修改mysql密码方法二:不使用修改my.ini重启服务的方法,通过非服务方式加skip-grant-tables运行mysql来修改mysql密码停止mysql服务打开命令行窗口,在bin目录下使用mysqld-nt.exe启动,即在命令行窗口执行: mysqld-nt --skip-grant-tables然后另外打开一个命令行窗口,登录mysql,此时无需输入mysql密码即可进入。按以上方法修改好密码后,关闭命令行运行mysql的那个窗口,此时即关闭了mysql,如果发现mysql仍在运行的话可以结束掉对应进程来关闭。启动mysql服务。
linux下的处理方法:
CentOS 7中安装mysql server的步骤分享 以前一直用RHEL6.3和6.4,系统盘里自带了mysqlserver,配置好yum源后,直接yuminstallmysql-server就可安装mysql服务器端了,最近用CentOS7.1,发现系统盘没有提供my
centos 7安装mysql5.5的方法 首先centos7已经不支持mysql,因为收费了你懂得,所以内部集成了mariadb,而安装mysql的话会和mariadb的文件冲突,所以需要先卸载掉mariadb,以下为卸载mariad
Mysql基础知识点汇总 1.什么是SQL语句sql语言:结构化的查询语言。(StructuredQueryLanguage),是关系数据库管理系统的标准语言。它是一种解释语言:写一句执行一句,不需要
标签: mysql ERROR 1044 (42000): Access denied for user ''@'localhost' to database
本文链接地址:https://www.jiuchutong.com/biancheng/347996.html 转载请保留说明!友情链接: 武汉网站建设