1.确保yum包更新到最新yum update 2.卸载旧版本(如果安装过旧版本的话)yum remove docker docker-common docker-selinux docker-engine 3.安装需要的软件包, yum-util 提供yum-config-manager功能,另外 ...
分类:
系统相关 时间:
2019-11-22 01:24:04
阅读次数:
85
Given a string which contains only lowercase letters, remove duplicate letters so that every letter appears once and only once. You must make sure you ...
分类:
其他好文 时间:
2019-11-22 01:02:42
阅读次数:
103
问题:rman duplicate时报错: RMAN-05001:auxiliary file name /u01/app/oracle/oradata/fratbs01.dbf conflicts with a file used by the target database 分析:应该是主库的这 ...
分类:
移动开发 时间:
2019-11-20 23:22:10
阅读次数:
113
源自 https://www.cnblogs.com/1ning/p/8985999.html 简介 TiDB 是 PingCAP 公司受 Google Spanner / F1 论文启发而设计的开源分布式 HTAP (Hybrid Transactional and Analytical Proc ...
分类:
数据库 时间:
2019-11-19 13:41:11
阅读次数:
79
ping, ping6 - send ICMP ECHO_REQUEST to network hosts ping命令向网络主机发送ICMP回传请求 详细描述: ping使用ICMP协议强制ECHO_REQUEST(回传请求)数据报从主机或网关获取ICMP协议的ECHO_RESPONSE(回传响应 ...
分类:
其他好文 时间:
2019-11-18 12:59:53
阅读次数:
122
on duplicate key update 使用:当数据库中有该数据就修改,没有就添加 MySQL语句如下: # id 不存在则添加数据,id存在就更新数据 INSERT INTO t_user(id,name,pwd) VALUE( 1, 'ZS', 'XXX') ON DUPLICATE K ...
分类:
数据库 时间:
2019-11-17 11:08:14
阅读次数:
139
深入浅出网工第一个入门协议---地址解析协议arp
1.什么是网络协议?arp为啥是一个入门级别协议?
2.掌握普通arp、免费arp、代理arp作用
3.两台电脑跨网段之间数据传递过程中的封装和解封装
分类:
其他好文 时间:
2019-11-14 23:41:51
阅读次数:
147
题目: ? 给定一个整数数组和一个整数 k ,判断数组中是否存在两个不同的索引 i 和 j ,使得 nums [i] = nums [j] ,并且 i 和 j 的差的绝对值最大为 k 。 ? Given an array of integers and an integer k , find out ...
分类:
其他好文 时间:
2019-11-14 19:45:36
阅读次数:
65
[TOC] 前端与算法 leetcode 26. 删除排序数组中的重复项 题目描述 "26. 删除排序数组中的重复项" 概要 一提到原地删除数组,就能立即想到双指针法,这道题本身也没什么难度,日常水题, 提示 双指针 解析 没有思路的时候,耐心一点即可 算法 传入 的运行结果 执行结果 ...
分类:
编程语言 时间:
2019-11-09 09:47:39
阅读次数:
62
Medium Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand. (i.e., [0,1,2,4,5,6,7] might become [4,5,6,7,0,1 ...
分类:
其他好文 时间:
2019-10-31 13:38:02
阅读次数:
87