加载中
k8s istio 指定端口出站流量不重定向到proxy

apiVersion: apps/v1 kind: Deployment metadata: labels: app: app version: v1 name: app namespace: ns spec: replicas: 1 selector: matchLabels: app: app template: metadata: labels:...

2020/04/17 16:10
108
K8s使用NFS持久卷配置

nfs服务部署 参照网上文档操作,太简单,这里不提。 创建storageclass kind: StorageClass metadata: name: slow namespace: ns1 provisioner: kubernetes.io/no-provisioner volumeBinding...

2019/11/15 16:40
973
How To Write Your Own BitTorrent Client By Using BT Library!

原文地址 jdk默认加密解密密钥长度限制问题:

2019/01/11 16:18
440
服务器查看日志比较好的一种方法

#!/bin/bash keyword="$1" file=$2 lines=`grep -n "$keyword" $file |awk -F ':' '{print $1}'` for i in $lines;do echo $i; endline=`expr $i + 15`; sed -n $i,${endline}p scan.log; ec...

2019/01/11 14:20
64
浏览器缓存控制

Most responses return an ETag header. Many responses also return a Last-Modified header. You can use the values of these headers to make subsequent requests to those resources u...

2018/10/29 15:04
62
Mysql Error:1205错误诊断

来自这里 前两天遇到一个1205(ER_LOCK_WAIT_TIMEOUT)的错误,弄了半天终于找到原因,掌握原理+细心才能找到罪归祸首。下面我给大家分享下这个问题的分析处理过程,希望对大家有所帮助。接到s...

2018/09/30 09:55
541
Java String 在JVM中的思考

<span style="font-size: medium;">package com; /** * @author longgangbai * */ public class StringTest { public static void main(String[] args) { String a = "ab";// 创建了一个对象...

2017/03/06 17:41
142
vm.overcommit_memory和vm.overcommit_ratio

vm.overcommit_memory vm.overcommit_ratio

2017/02/08 11:04
3.5K
apache hawq

资料地址: 导航页 What is HAWQ? HAWQ Architecture How HAWQ Manages Resources Understanding the Fault Tolerance Service Table Distribution and Storage Choosing the Table Distrib...

2017/01/12 17:15
237
web服务器配置https

openssl ca 数字证书

2016/10/26 21:15
422
Hive 创建表语句分析

hive create table

2016/10/20 10:02
78

没有更多内容

加载失败,请刷新页面

返回顶部
顶部