일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- nvcc
- ML
- 크롤링
- AI
- 머신러닝
- 잡담
- Trouble shooting
- category_encoders
- SMTP
- IOPub
- PYTHON
- 트러블슈팅
- nvidia-smi
- Django
- 파일입출력
- beautifulsoup
- 이것이 코딩 테스트다
- pandas
- 그리디
- aof
- json
- auc
- 인공지능
- semi-project
- EarlyStopping
- Logistic linear
- Roc curve
- cuda
- nvidia
- selenium
- Today
- Total
목록트러블슈팅 (3)
개발 블로그
Error message Error: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error. Redis가 디스크에 데이터를 지속적으로 저장하는 데 문제가..

인터넷이 안되는 원격 장비(Ubuntu 20.04)에 category encoders와 dependency package들을 설치하는 과정에서 만난 에러를 정리해본다. 우선 category_encoders의 requirements목록은 다음 페이지에서 확인 할 수 있다. https://github.com/scikit-learn-contrib/category_encoders/blob/master/requirements.txt numpy>=1.14.0 scikit-learn>=1.0.0 scipy>=1.0.0 statsmodels>=0.9.0 pandas>=1.0.5 patsy>=0.5.1 unittest2 # unittest2는 안설치해도 pip install 됨 importlib_resources ; p..
daemonset.yaml 파일로 컨테이너 버전을 업데이트 하려고 했는데 daemonset 파드의 Status가 ImagePullbackOff 가 계속 떠있었다. 내 경우에는 dockerhub에 해당 이미지가 없기 때문에, 없는 이미지를 pull하려고 하니까 당연히 버전 업데이트가 안되는 것이였다. 아래와 같이 daemonset.yaml의 image버전이 0.998이였는데, 이를 dockerhub에 있는 image 버전으로 바꿔주니 잘 동작하였다. - name: container image: draidev/my_image:0.998