随笔分类 -  数据库

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