一、OMV定时关机 设置方法:电源管理->计划任务->添加->保存 注意以下选项不要启用 二、PVE定时关机 编辑文件 /etc/crontab 最后一行加55 23 * * * root /sbin/shutdown -h now代表23:55分立即关机,中间空格用tab符。 想要pve自动开机就 ...
分类:
其他好文 时间:
2020-07-21 01:07:34
阅读次数:
198
我用的是 mybatis,发生错误的原因是,我在sql 语句中用了 < 小于号 ,把语句改为 > 大于号 就好了 例: DATE_FORMAT( NOW(), '%H:%i' ) < open_time // 改为 DATE_FORMAT( NOW(), '%H:%i' ) > open_time ...
分类:
其他好文 时间:
2020-07-19 23:45:59
阅读次数:
134
VS自动按日期生成版本号,修改解决方案文件 <PropertyGroup> <TargetFramework>netstandard2.1</TargetFramework> <Revision>$([System.DateTime]::Now.ToString("yyyy.MM.dd.HHmm") ...
分类:
其他好文 时间:
2020-07-18 22:29:46
阅读次数:
113
<template> <div class="selectCityMain" ref="DOM" id="pageId"> <div ref="Box"> <!-- <div v-if="letter.length > 0" class="now-sort">{{letter}}</div> --> ...
分类:
其他好文 时间:
2020-07-18 22:12:55
阅读次数:
111
#背景 今天在学习mysql时,看到一个案例,大体来说,就是客户端报Too many connections。但是,客户端的连接池,限制为了200,两个客户端java进程,那也才400,然后mysql配置了800的连接。 mysql是在my.cnf中配置了: [root@localhost CAD_ ...
分类:
数据库 时间:
2020-07-18 15:24:03
阅读次数:
103
Tom and Jerry are going on a vacation. They are now driving on a one-way road and several cars are in front of them. To be more specific, there are nn ...
分类:
其他好文 时间:
2020-07-17 09:30:42
阅读次数:
82
The Hamming distance between two integers is the number of positions at which the corresponding bits are different. Now your job is to find the total ...
分类:
其他好文 时间:
2020-07-16 12:06:09
阅读次数:
75
date_sub()函数: DATE_SUB(date,INTERVAL expr type) 实例: SELECT NOW(),DATE_SUB(NOW(),INTERVAL 1 HOUR) as the_time select * from xxx where create_time > DAT ...
分类:
数据库 时间:
2020-07-16 00:00:16
阅读次数:
160
In LOL world, there is a hero called Teemo and his attacking can make his enemy Ashe be in poisoned condition. Now, given the Teemo's attacking ascend ...
分类:
其他好文 时间:
2020-07-15 15:50:01
阅读次数:
61
运行时更改Connections的target 使用QML时, 有时需要在运行时, 监控不同的对象的信号. 可采用以下方法动态更改Connections的target属性实现. 代码如下 Rectangle { id: container width: 600 height: 400 color: ...
分类:
其他好文 时间:
2020-07-14 13:17:44
阅读次数:
79