## Docker 应用部署 ### 一、部署MySQL 1. 搜索mysql镜像 ```shelldocker search mysql``` 2. 拉取mysql镜像 ```shelldocker pull mysql:5.6``` 3. 创建容器,设置端口映射、目录映射 ```shell# 在 ...
分类:
其他好文 时间:
2020-11-07 17:42:36
阅读次数:
27
1、将时间先调整为20年后(比如为2030年10月1号),然后在设置里设置 暂停更新,发现此时的 暂停更新时间 被设定了在2030年,此时将系统时间改回正常时间,再次进入设置里的 暂停更新,发现时间还定位在2030年,perfect,成功欺骗了win10系统。 2、将windows update 服 ...
for (var m = 0; m < oneList.length; m++) { $('#grid tr').find('td:eq('+oneList[m]+')').hide(); } 其中oneList里面存储的是指定列的列数,也就是列坐标 ...
分类:
Web程序 时间:
2020-11-07 16:39:59
阅读次数:
24
use think\Config; $config = Config::get('database2'); //读取第二个数据库配置 $connect = Db::connect($config); //连接数据库 $data = $connect->name('admin')->find(); / ...
分类:
数据库 时间:
2020-11-07 16:21:15
阅读次数:
22
1.需要先导入一个设置表结构 xxqcfg_mstr(用Data Administraton工具选择数据库导入) ADD TABLE "xxqcfg_mstr" AREA "CONTROL" DESCRIPTION "Config for xxqad program " DUMP-NAME "xxq ...
分类:
其他好文 时间:
2020-11-07 15:59:54
阅读次数:
19
Leetcode(easy Double pointer) Leetcode 双指针简单题目 26 删除排序数组中的重复项 class Solution{ public int removeDuplicates(int[] nums){ // step代表慢指针 int step = 0; // 这 ...
分类:
其他好文 时间:
2020-11-06 02:28:21
阅读次数:
24
题目: 字符串中有括号”()[]{}”,设计算法,判断该字符串是否有效括号必须以正确的顺序配对,如:“()”、“()[]”是有效的,但“([)]”无效 解法一: # coding=utf-8 from pythonds.basic.stack import Stack # 栈可以不用此包,入栈app ...
分类:
其他好文 时间:
2020-11-06 02:07:04
阅读次数:
20
只适用于可以Windows认证登录的instance. 主库脚本 exec sp_configure 'show advanced_options',1 reconfigure exec sp_configure 'xp_cmdshell',1 reconfigure exec sp_configu ...
分类:
其他好文 时间:
2020-11-06 02:06:51
阅读次数:
19
一、问题 升级java11后,maven命令打包报错: mvn clean package -Dmaven.test.skip=true [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8 ...
分类:
编程语言 时间:
2020-11-06 01:37:38
阅读次数:
23
cd ls pwd clear chmod chown chattr userdel groupadd vi wim cat more less mv cp rm rmdel touch ifconfig ip addr ping route echo wc expr bc ln head tail ...
分类:
其他好文 时间:
2020-11-04 19:25:23
阅读次数:
43