zhangjinxuan 发表于 2023-6-30 14:44:05

mysql 数据库问题,如何解决

# mysql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

就差这一个环了,求助。

isdkz 发表于 2023-6-30 14:46:03

你之前发的没发全我还以为是你的docker容器访问不了数据库,你这个肯定是访问不了的呀

zhangjinxuan 发表于 2023-6-30 14:47:27

isdkz 发表于 2023-6-30 14:46
你之前发的没发全我还以为是你的docker容器访问不了数据库,你这个肯定是访问不了的呀

先等一下,我先按照网上说的来解决。

主要是我直接输入 mysql 都报出了一模一样的错误。

zhangjinxuan 发表于 2023-6-30 14:48:13

isdkz 发表于 2023-6-30 14:46
你之前发的没发全我还以为是你的docker容器访问不了数据库,你这个肯定是访问不了的呀

UOJ 那边报错了:

Unknown database 'app_uoj233'

歌者文明清理员 发表于 2023-6-30 14:50:52

zhangjinxuan 发表于 2023-6-30 14:48
UOJ 那边报错了:

没有这个数据库,你看看名字对不对

zhangjinxuan 发表于 2023-6-30 14:52:13

歌者文明清理员 发表于 2023-6-30 14:50
没有这个数据库,你看看名字对不对

我当然知道不对,那么这个怎么改?

歌者文明清理员 发表于 2023-6-30 14:53:03

zhangjinxuan 发表于 2023-6-30 14:52
我当然知道不对,那么这个怎么改?

我咋知道正确的名字

zhangjinxuan 发表于 2023-6-30 14:54:16

歌者文明清理员 发表于 2023-6-30 14:53
我咋知道正确的名字

我还是先研究研究

isdkz 发表于 2023-6-30 14:59:10

zhangjinxuan 发表于 2023-6-30 14:48
UOJ 那边报错了:

执行 docker logs --tail 10 uoj-db 看看

zhangjinxuan 发表于 2023-6-30 15:00:40

isdkz 发表于 2023-6-30 14:59
执行 docker logs --tail 10 uoj-db 看看

'/var/lib/mysql/mysql.sock' -> '/var/run/mysqld/mysqld.sock'
2023-06-30T06:05:33.233276Z 0 The syntax '--skip-host-cache' is deprecated and will be removed in a future release. Please use SET GLOBAL host_cache_size=0 instead.
2023-06-30T06:05:33.241180Z 0 /usr/sbin/mysqld (mysqld 8.0.33) starting as process 1
2023-06-30T06:05:33.305380Z 1 InnoDB initialization has started.
2023-06-30T06:05:34.271324Z 1 InnoDB initialization has ended.
2023-06-30T06:05:36.466920Z 0 CA certificate ca.pem is self signed.
2023-06-30T06:05:36.467479Z 0 Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel.
2023-06-30T06:05:36.491040Z 0 Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
2023-06-30T06:05:36.866744Z 0 X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/run/mysqld/mysqlx.sock
2023-06-30T06:05:36.867805Z 0 /usr/sbin/mysqld: ready for connections. Version: '8.0.33'socket: '/var/run/mysqld/mysqld.sock'port: 3306MySQL Community Server - GPL.

zhangjinxuan 发表于 2023-6-30 15:03:13

isdkz 发表于 2023-6-30 14:59
执行 docker logs --tail 10 uoj-db 看看

我设置了 skip-grant-tables,并添加了对应的数据库名,这会儿终于解决了,但是成了这个奇怪样子:

isdkz 发表于 2023-6-30 15:03:52

zhangjinxuan 发表于 2023-6-30 15:00


看起来没有问题,运行以下命令连接mysql:

mysql --host `docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' uoj-db` -uroot -proot

zhangjinxuan 发表于 2023-6-30 15:05:52

isdkz 发表于 2023-6-30 15:03
看起来没有问题,运行以下命令连接mysql:

Warning: Using a password on the command line interface can be insecure.
ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded: /www/server/mysql/lib/plugin/caching_sha2_password.so: cannot open shared object file: No such file or directory

isdkz 发表于 2023-6-30 15:09:52

zhangjinxuan 发表于 2023-6-30 15:05


那就把 -p 去掉手动敲密码看看

mysql --host `docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' uoj-db` -uroot

zhangjinxuan 发表于 2023-6-30 15:10:41

isdkz 发表于 2023-6-30 15:09
那就把 -p 去掉手动敲密码看看

ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded: /www/server/mysql/lib/plugin/caching_sha2_password.so: cannot open shared object file: No such file or directory

No such file or directory

isdkz 发表于 2023-6-30 15:11:44

zhangjinxuan 发表于 2023-6-30 15:10
No such file or directory

你本地的mysql客户端出问题了,安装一下caching_sha2_password.so

zhangjinxuan 发表于 2023-6-30 15:22:24

本帖最后由 zhangjinxuan 于 2023-6-30 15:24 编辑

isdkz 发表于 2023-6-30 15:11
你本地的mysql客户端出问题了,安装一下caching_sha2_password.so

不对啊,我 yum 怎么坏了,centos7 不是 2024年6月30日 停维吗

isdkz 发表于 2023-6-30 15:35:34

zhangjinxuan 发表于 2023-6-30 15:22
不对啊,我 yum 怎么坏了,centos7 不是 2024年6月30日 停维吗

centos早就停止维护了,你可以不用官方源

zhangjinxuan 发表于 2023-6-30 15:36:31

isdkz 发表于 2023-6-30 15:35
centos早就停止维护了,你可以不用官方源

what the f***

真的假的?不是 2024/6/30 日 centos7 才停止维护吗?

isdkz 发表于 2023-6-30 15:38:20

zhangjinxuan 发表于 2023-6-30 15:36
what the f***

真的假的?不是 2024/6/30 日 centos7 才停止维护吗?

好吧,原来centos7还在苟延残喘
页: [1] 2 3 4
查看完整版本: mysql 数据库问题,如何解决