host-mount-pod.yaml 작성 apiVersion: v1 kind: Pod metadata: name: host-mount-pod spec: containers: - name: host-mount-container image: busybox # BusyBox는 간단한 Linux 배포판으로, 기본적인 명령어를 포함합니다. command: ["sleep", "3600"] # 파드가 종료되지 않고 계속 실행되도록 설정 volumeMounts: - name: root-volume mountPath: /host readOnly: true # 읽기 전용으로 마운트 volumes: - name: root-volume hostPath: path: / # 호스트 머신의 루트 디렉토리를 마운트합니다. type:..
전체 글
OS : CentOS7.9 1. OpenLDAP 설치 # yum install openldap-servers openldap openldap-clients openldap-devel nss_ldap compat-openldap # vi /etc/sysconfig/slapd # OpenLDAP server configuration # see 'man slapd' for additional information # Where the server will run (-h option) # - ldapi:/// is required for on-the-fly configuration using client tools # (use SASL with EXTERNAL mechanism for authentication..
모든 복제과정은 사전에 source클러스터에 존재하는 테이블과 동일한 테이블을 target에 만들어 놓고 데이터 복제를 수행했다. 1번 kudu table copy의 경우 kudu테이블 생성 옵션이 있긴 하지만 결국 impala를 통해 테이블을 사용하기 때문에 impala에서 테이블 생성해놓고 진행했다.1. kudu table copycli kudu command보안(kerberos) 클러스터의 경우 kudu 서비스 keytab 또는 권한 가지는 유저로 kinit 필요kerberos 없을 경우 sudo -u kudu 이용kudu table copy 옵션 참조: https://kudu.apache.org/docs/command_line_tools_reference.html#table-copy Apach..
Cloudera에서는 클러스터 성능을 위해 swap을 최소로 사용하도록 설정할 것을 권고한다. https://docs.cloudera.com/cdp-private-cloud-base/7.1.7/managing-clusters/topics/cm-setting-vmswappiness-linux-kernel-parameter.html Redhat7에서는 sysctl.conf에 vm.swappiness 설정을 추가하는 것으로 문제가 없지만 Redhat8 일부 버전에서 sysctl.conf의 vm.swappiness설정이 전체 프로세스로 적용이 안되는 현상. 관련 링크(https://access.redhat.com/solutions/6785021) 확인 방법 예시 1. 현재 os 설정값 1 확인 $ sysctl ..