跑步时:
$ sudo puppetd --verbose --no-daemonize -o
我会犯错误,例如:
err: //webserver/Mysql::Rights[Setup SW Database]/Mysql_user[scraperwiki@localhost]: Failed to retrieve current state of resource: Execution of '/usr/bin/mysql mysql -NBe select '1' from user where CONCAT(user, '@', host)
在Maven项目中。当我第一次设置XAMPP和MySQL时,效果很好。但在mysql-connector-java-8.0.20.zip或mysql-connector-java-8.0.20.jar.的NetBeans中,我无法连接到MySQL,也无法创建连接driver="com.mysql.cj.jdbc.Driver"和url="jdbc:mysql://localhost:3306/mysql"
当我要向MySQL添加新连接时,它会显示错误消息,
Cannot establish a connection to jdbc:mysql://loc
遵循这教程,一切都很好,直到我尝试用root和密码登录到phpmyadmin的那一刻:
问题1(无法登录到phpmyadmin):
mysqli_real_connect(): (HY000/1698): Access denied for user 'root'@'localhost'
问题2(在控制台期间登录时不需要密码:
sudo mysql
问题3(有两个名为“root”的用户):
SELECT User, Host FROM mysql.user;
还我
User | Host
root | %
deb
我有一台安装了mysql的ubuntu服务器,有一次我看到运行在服务器上的php代码可以访问mysql,但我无法远程访问mysql,对于另一台服务器或sequal pro。
$ mysql -u root -p
mysql> GRANT ALL on *.* TO 'thomas'@'%';
mysql> exit
$ mysql -u thomas -p
mysql> show grants;
+--------------------------------------------------------------------------
我无法通过命令行连接到mysql:
$ mysql -u root
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
$ mysql
ERROR 1045 (28000): Access denied for user 'alex'@'localhost' (using password: NO)
我怎么才能修复它呢?
后缀:加载共享库时出错: libmysqlclient.so.16:无法打开共享对象文件:没有这样的文件或目录
[root@localhost ~]# mysql -uroot -p*** -e "select version();"
Warning: Using a password on the command line interface can be insecure.
+-----------+
| version() |
+-----------+
| 5.6.29 |
+-----------+
[root@localhost ~]# cat /etc/r
我通过以下命令连接到MySql:
$ mysql -h localhost
mysql> CREATE USER 'alex1'@localhost IDENTIFIED BY 'password$';
ERROR 1227 (42000): Access denied; you need (at least one of) the CREATE USER privilege(s) for this operation
现在我什么也不能做(例如,创建一个具有CRUD特权的新用户),因为localhost没有足够的权限。我无法用任何其他凭据连接到MySql,
我为我的站点使用的MySQL用户无法截断它需要的表。
所以我想给那个表添加删除权限。
我在命令行中运行了这个命令:
GRANT DELETE ON my_db.my_table TO my_mysql_user@localhost;
输出是
查询确定,0行受影响(0.06秒)
现在,用户(可能会)根本无法连接到数据库:
mysql_connect() :拒绝用户'my_mysql_ user '@'localhost‘(使用密码:是)的访问
两天来,我已经阅读了很多堆栈溢出问题,但我无法解决这个问题(我使用的是Mac)。
我做到了:mysql -u root -p。
所以它要求输入密码,而root密码是空的,不是只需输入get me进入mysql监视器,我就收到了这样的消息:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is xxx
Server version: 5.7.18 Homebrew
然后:mysql> CREATE DATABASE concon CHARACTER SET utf8;。
所
我已经被困在这几天了。我有mysql的brew安装。怎样才能让我进入mysql..
launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
$(brew --prefix mysql)/bin/mysqld_safe --skip-grant-tables --skip-networking
mysql -u root // or just mysql
所以现在我加入了。根据这个查询的结果,我已经成功地更改了'root'@'localhost‘的密码。
mysql> select
我无法使用mysqlworkbench连接到mysql。我正在使用mamp,它给出了下面的错误: Failed to Connect to MySQL at localhost:8888 with user root
I have put the username "root" and no password.
Hostname:localhost Port:8888
4个月前,我在mac上通过macports安装了mysql56+server。今天笔记本电脑重启后,我无法再通过SQL Pro连接到MySQL。我只能通过终端连接。我已经在下面发布了一些相关的信息。
成功连接到MySQL的命令(输入密码后):
/opt/local/etc/mysql56 mysql -u root -p
无法连接到MySQL的命令:
/opt/local/etc/mysql56 mysql -u root -p -h '127.0.0.1'
Enter password:
ERROR 2003 (HY000): Can't connect to My
有许多类似的问题,但没有一个问题对我有帮助。
我在Windows上使用MySQL的根/根凭据已经有一段时间了,但是最近我无法登录
> mysql
ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO)
> mysql -uroot
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
> m
我安装了MySql5.5并在安装过程中设置了密码,但当我尝试从windows命令提示符使用mysql时,我得到了以下错误:
access denied for user 'odbc'@'localhost' to database password = 'YES'
我想把它改回"root@localhost“,并重置密码,但我无法登录mysql。
如何以root用户登录mysql?
我能够通过下面的命令连接并查看数据库。但无法运行迁移或创建导致以下错误的表。
命令
mysql -h endpoint.rds.amazonaws.com -u admin -p
误差
SQLSTATE[HY000] [1045] Access denied for user 'admin'@'MY-IP' (using password: YES)
(SQL: select * from information_schema.tables
where table_schema = storydb and table_name = migrations an