oracle 11g change charset on docker

## get docker list [root@localhost ~]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 08d434228dfe jaspeen/oracle-xe-11g "/entrypoint.sh " 5 weeks ago Up 9 days 0.0.0.0:1521->1521/tcp, 0.0.0.0:9000->8080/tcp db ## get docker list [root@localhost ~]# docker exec -it db sqlplus SQL*Plus: Release 11.2.0.2.0 Production on Thu Aug 6 13:15:38 2020 Copyright (c) 1982, 2011, Oracle. All rights reserved. Enter user-name: system Enter password: Connected to: Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production SQL> SELECT name, value$ FROM sys.props$ WHERE name = 'NLS_CHARACTERSET'; SELECT name, value$ FROM sys.props$ WHERE name = 'NLS_NCHAR_CHARACTERSET'; NAME ------------------------------ VALUE$ -------------------------------------------------------------------------------- NLS_

install redis on kubernetes

## set repo [root@k8smaster ~]# helm repo add bitnami https://charts.bitnami.com/bitnami "bitnami" has been added to your repositories ## set repo [root@k8smaster ~]# helm repo add bitnami https://charts.bitnami.com/bitnami^C [root@k8smaster ~]# helm install bitnami/redis NAME: esteemed-pug LAST DEPLOYED: Wed Jun 24 18:16:53 2020 NAMESPACE: default STATUS: DEPLOYED RESOURCES: ==> v1/ConfigMap NAME DATA AGE esteemed-pug-redis 3 0s esteemed-pug-redis-health 6 0s ==> v1/Pod(related) NAME READY STATUS RESTARTS AGE esteemed-pug-redis-master-0 0/1 Pending 0 0s esteemed-pug-redis-slave-0 0/1 Pending 0 0s ==> v1/Secret NAME TYPE DATA AGE esteemed-pug-redis Opaque 1 0s ==> v1/Service NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE esteemed-pug-redis-headless ClusterIP None <none> 6379/TCP

install stackedit

## install nodejs root@min-HVM-domU:~/stackedit# curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - ## Installing the NodeSource Node.js 12.x repo... ## Populating apt-get cache... + apt-get update 기존:1 https://deb.nodesource.com/node_12.x bionic InRelease 기존:2 http://security.ubuntu.com/ubuntu bionic-security InRelease 기존:3 http://kr.archive.ubuntu.com/ubuntu bionic InRelease 기존:4 http://kr.archive.ubuntu.com/ubuntu bionic-updates InRelease 기존:5 http://kr.archive.ubuntu.com/ubuntu bionic-backports InRelease 패키지 목록을 읽는 중입니다... 완료 ## Confirming "bionic" is supported... + curl -sLf -o /dev/null 'https://deb.nodesource.com/node_12.x/dists/bionic/Release' ## Adding the NodeSource signing key to your keyring... + curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - OK ## Creating apt sources list file for the NodeSource Node.js 12.x repo... + echo 'deb https://deb.nodesource.com/node_12.x bionic main' > /etc/apt/sou