타임머신을 사용하는 경우 로컬 디스크에 스냅샷을 생성하기 때문에 설정된 저장 공간이 제거 가능한 저장 공간으로 설정되어있다. 타임 머신 명령어로 저장된 스냅샷의 목록을 확인하고 삭제를 한다. tmutil listlocalsnapshots / com.apple.TimeMachine.2017-10-04-014927 (dataless) com.apple.TimeMachine.2017-10-04-024750 sudo tmutil deletelocalsnapshots 2017-10-04-014927
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 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 nexus 환경에서 새로운 이미지 push 경우 docker push no basic auth credentials 장애 발생 시 다음과 같이 docker logout 이후 login 으로 장애 해결 docker logout docker login localhost:5000
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
error log elastic "No processor type exists with name [attachment]" sudo bin/elasticsearch-plugin install ingest-attachment
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..