Fork me on GitHub
上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 98 下一页
摘要: Deepin https://www.deepin.org/download/ 中标麒麟 http://www.cs2c.com.cn/ 阅读全文
posted @ 2020-03-31 21:20 秋夜雨巷 阅读(299) 评论(0) 推荐(0)
摘要: FurMark 显卡压力测试工具 https://geeks3d.com/furmark/ GPU压力测试软件,也集成了CPU测试工具(通过设置线程拉满CPU,4核8线程的就填8)。 aida64 extreme 收费,但是很专业 官网:https://www.aida64.com/products 阅读全文
posted @ 2020-03-31 11:15 秋夜雨巷 阅读(1668) 评论(0) 推荐(0)
摘要: 查看mysql安装位置 执行命令找到mysql安装位置basedir show VARIABLES; 日志类型 mysql有以下几种日志 错误日志: -log-err 查询日志: -log 慢查询日志: -log-slow-queries 更新日志: -log-update 二进制日志: -log- 阅读全文
posted @ 2020-03-26 12:10 秋夜雨巷 阅读(10703) 评论(0) 推荐(0)
摘要: <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> <scope>provided</scope> </dependency> 改为 <depende 阅读全文
posted @ 2020-03-23 22:58 秋夜雨巷 阅读(608) 评论(0) 推荐(0)
摘要: 安装EPEL EPEL (Extra Packages for Enterprise Linux,企业版Linux的额外软件包) 是Fedora小组维护的一个软件仓库项目,为RHEL/CentOS提供他们默认不提供的软件包。这个源兼容RHEL及像CentOS和Scientific Linux这样的衍 阅读全文
posted @ 2020-03-23 19:59 秋夜雨巷 阅读(731) 评论(0) 推荐(1)
摘要: 新建 touch restart_tomcat.sh #新建文件 chmox +x restart_tomcat.sh #赋予权限 写入脚本 用vi命令写入 #解决中文乱码问题 export LANG="en_US.UTF-8" #执行命令,重启tomcat tomcat_home=/usr/loc 阅读全文
posted @ 2020-03-19 15:59 秋夜雨巷 阅读(927) 评论(0) 推荐(1)
摘要: Mysql Cannot get a connection, pool error Timeout waiting for idle object 阅读全文
posted @ 2020-03-19 12:05 秋夜雨巷 阅读(6231) 评论(0) 推荐(0)
摘要: 问题 Mysql服务器默认的“wait_timeout”是8小时,也就是说一个connection空闲超过8个小时,Mysql将自动断开该connection。 可以用show global variables LIKE'wait_timeout';查看mysql的等待时间。 这就是问题的所在,在连 阅读全文
posted @ 2020-03-18 15:55 秋夜雨巷 阅读(10166) 评论(0) 推荐(0)
摘要: Git原理 git fetch是将远程主机的最新内容拉到本地,用户在检查了以后决定是否合并到工作本机分支中。 而git pull 则是将远程主机的最新内容拉下来后直接合并,即:git pull = git fetch + git merge,这样可能会产生冲突,需要手动解决。 解决方案 ① 保存本地 阅读全文
posted @ 2020-03-18 11:01 秋夜雨巷 阅读(18063) 评论(0) 推荐(1)
摘要: 官网文档 https://www.jetbrains.com/help/idea/enabling-web-application-support.html 1 IDEA版本必须是ULTIMATE版本2 启用 Java EE:EJB,JPA,Servlets插件. 确认自己IDEA的版本没有问题是U 阅读全文
posted @ 2020-03-18 10:00 秋夜雨巷 阅读(2575) 评论(0) 推荐(0)
上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 98 下一页