ERROR JDBCExceptionReporter:72 - Communications link failure due to underlying exception:

ERROR JDBCExceptionReporter:72 - Communications link failure due to underlying exception:,第1张

参考 马云:我先来,我觉得5号选手,刚才你的那些想法挺不错。但是3G这个行业大家都看好,但是里面做的过程中会有很多细节的东西你可能还没有想清楚,我刚才讲的上市这些想清楚了再说。尤其对VC一定要想清楚了说,另外一个我觉得你刚才讲的很多的是免费,我的建议免费是世界上最昂贵的东西。所以尽量不要免费。等你有了钱以后再考虑免费,千万不要跟VC讲我拿了你的钱我去免费,说话的VC都是怕的,永远做生意的时候就当永远拿不到钱,你每一笔生意必须挣钱,免费不是一个好策略,它付出的代价会非常大。

你的MYSQL帐号不允许远程访问,因此才会报错.

MYSQL中的每一个用户,都有访问的权限.这权限不仅包括对数据库的 *** 作权限,还包括远程连接权限.

MYSQL安装之后默认创建的ROOT用户,访问权限为localhost.也就是只能在本地访问.要想让它可以远程访问,可以修改成 % (任意主机)或你的PHPMYADMIN所在的服务器的IP地址.

修改的方法很简单.用ROOT进入系统,运行以下命令:

use mysql ---打开MYSQL这个库

update user set host="%" where user="root"

这样就OK了

0.客户端登陆报错

luobiaodeMacBook-Air:~ luobiao$ ssh root@39.101.204.8

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!    @

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!

Someone could be eavesdropping on you right now (man-in-the-middle attack)!

It is also possible that a host key has just been changed.

The fingerprint for the ECDSA key sent by the remote host is

SHA256:jN2L7Ebd8ZV03ErBmMpGwHybqNBnLqOX0TTk9TbgzZs.

Please contact your system administrator.

Add correct host key in /Users/luobiao/.ssh/known_hosts to get rid of this message.

Offending ECDSA key in /Users/luobiao/.ssh/known_hosts:8

ECDSA host key for 39.101.204.8 has changed and you have requested strict checking.

Host key verification failed.

解决:

这里面,有一句很关键。

ECDSA host key for 39.101.204.8  has changed and you have requested strict checking.

Host key verification failed.

一般这个问题,是你重置过你的服务器后。你再次想访问会出现这个问题。

ssh-keygen -R  39.101.204.8 

1.安装mysql报错

mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory

解决:

经过百度说是缺少 libaio.so.1  这个包.这个包是干什么的呢?

我也没查看到?试试先安装这个包。

yum -y install libaio  

安装后,解决该问题。

2.[ root @later01 /errlog ]# /etc/init.d/mysqld start 

Starting MySQL.2020-04-11T16:49:17.645735Z mysqld_safe error: log-error set to '/errlog/3306/mysql.log', however file don't exists. Create writable for user 'mysql'.

解决: 创建日志文件并赋权 

[ root @later01 /errlog/3306 ]# echo "" >mysql.log 

[ root @later01 /errlog/3306 ]# chown -R mysql.mysql /errlog/

3.2020-04-11T16:52:12.084460Z 0 [ERROR] InnoDB: The innodb_system data file './ibdata1' is of a different size 768 pages (rounded down to MB) than the 4864 pages specified in the .cnf file!

解决:注释my.cnf 中的

#innodb_data_file_path=ibdata1:76Mibdata2:100Mibdata3:100M:autoextend


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存