随笔分类 - 数据库
数据库
异常解决:Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
摘要:异常解决:Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure 这个异常通常有如下信息: 原因分析 当数据库重启或数据库空闲连接超过设置的最大timemout时间
阅读全文
摘要:软件包的下载 在浏览器中访问https://www.enterprisedb.com/download postgresql binaries 然后选择适合自己的版本,我选择的是linux64位下的10.0.7版本,下载后得到一下的包:postgresql 10.7 1 linux x64 bina
阅读全文
摘要:方法1: 用SET PASSWORD命令 mysql -u root mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass'); 方法2:用mysqladmin mysqladmin -u root password "newp
阅读全文