Mac에서 제거 가능한 저장 공간 바로 삭제하기
System Management2022. 5. 5. 21:09Mac에서 제거 가능한 저장 공간 바로 삭제하기

타임머신을 사용하는 경우 로컬 디스크에 스냅샷을 생성하기 때문에 설정된 저장 공간이 제거 가능한 저장 공간으로 설정되어있다. 타임 머신 명령어로 저장된 스냅샷의 목록을 확인하고 삭제를 한다. tmutil listlocalsnapshots / com.apple.TimeMachine.2017-10-04-014927 (dataless) com.apple.TimeMachine.2017-10-04-024750 sudo tmutil deletelocalsnapshots 2017-10-04-014927

elasticsearch [..all indices on this node will be marked read-only..] 장애 처리
Search Engine2022. 5. 5. 21:07elasticsearch [..all indices on this node will be marked read-only..] 장애 처리

Disk 용량 10% 이상 확보 필요 curl -XPUT 'http://localhost:9200/_all/_settings?preserve_existing=true' -d '{ "index.blocks.read_only_allow_delete" : null }' -H 'Content-Type: application/json'

MongoDB 커넥션 상태 정보 확인
Database2022. 2. 18. 10:57MongoDB 커넥션 상태 정보 확인

MongoDB 커넥션 정보를 확인할 수 있는 명령어 db.serverStatus()

Mongodb Replication 구성 시 Reconfig attempted to install a config that would change the implicit default write concern.. 장애 해결 방법
Database2022. 2. 15. 22:43Mongodb Replication 구성 시 Reconfig attempted to install a config that would change the implicit default write concern.. 장애 해결 방법

mongoDB PSA 구성으로 arbiter 추가 시 다음과 같은 장애 발생 MongoServerError: Reconfig attempted to install a config that would change the implicit default write concern. Use the setDefaultRWConcern command to set a cluster-wide write concern and try the reconfig again. 장애 처리 방법 다음 명령어 실행 후 arbiter 노드 추가 명령어 실행 db.adminCommand({ setDefaultRWConcern : 1, defaultWriteConcern: { w: 1 }, }) arbiter 노드 추가 명령어 rs.addA..

Docker push no basic auth credentials nexus error
System Management2022. 2. 13. 00:02Docker push no basic auth credentials nexus error

docker nexus 환경에서 새로운 이미지 push 경우 docker push no basic auth credentials 장애 발생 시 다음과 같이 docker logout 이후 login 으로 장애 해결 docker logout docker login localhost:5000

elasticsearch 7.16.3 환경에서 elasticsearch-hq 3.5.12 설치
Search Engine2022. 2. 5. 22:06elasticsearch 7.16.3 환경에서 elasticsearch-hq 3.5.12 설치

git clone https://github.com/ElasticHQ/elasticsearch-HQ.git pip install -r requirements.txt python ./manage.py runserver 접속: http://localhost:5000 1). 'Request' object has no attribute 'is_xhr' 장애 발생 시 pip install werkzeug==0.16.1

elasticsearch "No processor type exists with name [attachment]" 장애 해결
Search Engine2022. 2. 4. 22:18elasticsearch "No processor type exists with name [attachment]" 장애 해결

error log elastic "No processor type exists with name [attachment]" sudo bin/elasticsearch-plugin install ingest-attachment

Mac OSX 환경에서 Monstache와 MongoDB 연동하기
Database2022. 2. 4. 22:17Mac OSX 환경에서 Monstache와 MongoDB 연동하기

GO 설치 다운로드: https://go.dev/dl/ 소스 설치: https://go.dev/doc/install/source Go 설치 To build the Go distribution, run 명령어 $ cd src $ ./all.bash brew 설치 명령어 brew install golang go 설치 환경 확인 명령어 go env 환경 변수 추가 export GOROOT=/usr/local/Cellar/go/1.17.6/libexec export GOPATH=/Users/kogun82/go export PATH=$PATH:$GOROOT/bin:$GOPATH/bin export GOPROXY=https://proxy.golang.org,direct Monstache 설치 brew install..

image