일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Vue
- Python
- DFS
- 코테
- android
- cos
- C++
- Flutter
- cos pro
- 동적계획법과최단거리역추적
- BAEKJOON
- codingtest
- 알고리즘
- 개발
- issue
- cos pro 1급
- 동적계획법
- 파이썬
- 분할정복
- 코드품앗이
- Algorithm
- AndroidStudio
- DART
- 백준
- 안드로이드스튜디오
- DFS와BFS
- 안드로이드
- django
- vuejs
- 코딩테스트
- Today
- Total
목록error (3)
Development Artist
이슈 docker-compose up을 하면서, image를 pulling하는 과정에서, credentials 에러 발생. 해결 1. cd ~/.docker 2. cat config.json 해보면, credsStore가 보이는데, credStore로 바꿔준다. s를 뺀다. 3. 다시 docker-compose up을 했는데, 이젠 접근거부가 발생. 4. 다시 config.json 파일로 가서. credsStore로 다시 s추가해주고, 앞에 _ 추가. 5. 또, 접근거부가 발생. 6. 추측 : pulling 하려고 하는 url에 대해 내가 접근 권한이 없어서 발생하는 것으로 예상. 해당 url에 접근 권한을 부여 받을 필요가 있을 것 같음. 7. docker login 을 쳐본다. 로그인 정보가 없다고 ..
이슈 npm 명령어 사용을 하려고 하면, "bash: /c/Program Files/nodejs/npm: /bin/sh^M: bad interpreter: No such file or directory" 다음과 같은 에러 메세지를 확인. 해결 1. cd ~ 2. vi .bashrc 3. i키 누르고 4. 마지막에 export PATH=$(echo "$PATH" | sed -e 's/:\/mnt[^:]*//g') # strip out problematic Windows %PATH% 의 내용 추가. 주의 현재 블로그내에 Latex 문법이 적용되어 있어서 해결 부분 $는 특수 문자로 사용됨. 복붙하면 깨질 수 있음.
이슈 docker ps 명령어 입력시 발생한 이슈 해결 1. 다음 명령어 입력 : systemctl start docker -> 문제 발생 : System has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus : Host is down. 2. 다음 명령어 입력 : sudo /etc/init.d/docker start