原创 From Centos 8 remote connect Windows 10

On windows 10 Downgrade security on the Windows server to accept SSL/TLSv2 This is generally not a solution, but a work

原创 Kubernetes https ingress

generate key and cert openssl genrsa -out key.pem 2048 openssl req -new -x509 -key key.pem -out cert.pem -days 3650 -s

原创 Centos 8 安裝中文輸入法

# 這篇博文就是使用Centos 8裏的中文輸入寫的。 安裝 sudo dnf install -y ibus-libpinyin 重啓系統。 然後進入Region & Language,在Input Sources點擊+,添加"Chi

原创 HikariCP and Druid

HikariCP is fast. Druid can monitor.

原创 Remote Debug Java on Kubernetes cluster

How to debug java after it has been deployed to kubernetes cluster. step1:  Add this two lines in the Dockerfile.(I use

原创 Git Study

Git Study gitk --all cat .git/HEAD cat .git/refs/heads/master git cat-file -t [COMMIT] git log git log --graph

原创 Maven 註冊本地jar示例語句

mvn install:install-file -Dfile=F:/maven_repository/libs/nosqldriver.jar -DgroupId=oracle.nosql -DartifactId=driver -D

原创 Kubernetes安裝local-path-provisioner基於HostPath使用動態PV

Kubernetes安裝local-path-provisioner基於HostPath使用動態PV 獲取local-path-provisioner git clone https://github.com/rancher/lo

原创 Oracle Linux 7安裝mysql-client

Oracle Linux 7安裝mysql-client 安裝命令如下 sudo rpm -Uvh https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-community-client

原创 Kubernetes安裝vitess

Kubernetes安裝vitess 介紹 Vitess是Cloud Native Computing Foundation上的Cloud Native項目的最新畢業生之一。這個項目最初是在YouTube內部開發的,從一開始,它就

原创 Oracle Helidon-快速開始

創建一個Helidon項目 新建一個項目,點擊【File】=》【New】=》【Project】: 選擇【MicroProfile Starter】,其他選項請參考截圖: 【MicroProfile Versions】中的選項值

原创 OCI Architecture Center

https://docs.oracle.com/en/solutions/index.html https://docs.oracle.com/en/solutions/learn-architect-microservice/index

原创 Kubernetes StatefulSet的升級策略

例如有5個Pod,設置partition=3,3以上的索引對象會更新 spec: updateStrategy: type: RollingUpdate rollingUpdate: partition:

原创 kubectl patch示例

  kubectl patch domain sample-domain1 -n sample-domain1-ns --type='json' -p='[{"op": "replace", "path": "/spec/serverS

原创 Kubernetes Debug

-v=6:顯示Request/Response的概要 -v=8:顯示Request Body/Response Body kubectl -v=6 get pod kubectl -v=8 get pod