본문 바로가기

분류 전체보기

(67)
알아두면 좋을 리눅스 명령어 개인메모용으로 계속 업데이트 예정. 1. sudo없이 docker 실행 sudo usermod -aG docker [사용자명] 2. 매번 sudo 없이 실행. sudo visudo 추가 -> [username] ALL=(ALL) NOPASSWD:ALL 3. 모든 service 목록 보기 systemctl list-units --type service 4. hostname 변경 hostnamectl set-hostname 호스트명 sudo vim /etc/hosts # 들어가서 호스트명 변경 reboot 5. networking 관한 ip link # 스위치에 연결된 device 이름 ip addr add [cidr] dev eth0 # 스위치의 device와 ip를 연결 route # route conf..
The difference between nvcc -v and nvidia-smi Deep learning을 하면서 가장 괴로웠던게 아마 CUDA 버전 맞추고 CUDA에서 에러가 나는 경우일 겁니다. 그리고 내내 의문이 들었던 것이 nvcc -V와 nvidia-smi에서 나온 cuda 버전이 다를 경우입니다. 그래서 제가 랩실에 있었을 때에서 그냥 nvcc걸로 보면 된다라고만 했지 정확한 이유는 몰랐습니다. CUDA는 2종류의 API가 있는데 그것은 runtime api와 driver api입니다. https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=lithium81&logNo=80143640568 CUDA 스터디 기록 #07 이 포스트는 "CUDA By Example", "대규모 병렬 프로세서 프로그래밍", "CU..
kubernetes란? 기본적인 kubernetes resource, option 등을 설명한 블로그입니다. 추가적인 기능을 보고싶으시면 docs를 참고바랍니다. https://kubernetes.io/docs/home/ Kubernetes Documentation Kubernetes is an open source container orchestration engine for automating deployment, scaling, and management of containerized applications. The open source project is hosted by the Cloud Native Computing Foundation. kubernetes.io kubernetes란 컨테이너를 도커 플랫폼에 올려서 ..
http://localhost:10248/healthz: dial tcp [::1]:10248: connect: connection refused error while installing kubernetes https://github.com/kubernetes/kubeadm/issues/1893 The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get http://localhost:10248/healthz: dial tc i have installed kubernetes on rhel7.4 when i run kubeadm init i am getting error like The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get http://localh... github.com sudo mkdir /etc..
kubernetes setting in ubuntu 1. Docker install Old Docker Remove sudo apt-get remove docker docker-engine docker.io containerd runc Set up the repository $ sudo apt-get update $ sudo apt-get install -y\ ca-certificates \ curl \ gnupg \ lsb-release $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg $ echo \ "deb [arch=$(dpkg --print-architecture) s..
내맘대로 Fastapi docs 정리(Path, query parameters, request body) Fastapi document를 보고 메모하는 블로그입니다. fastapi document : https://fastapi.tiangolo.com/ FastAPI FastAPI FastAPI framework, high performance, easy to learn, fast to code, ready for production Documentation: https://fastapi.tiangolo.com Source Code: https://github.com/tiangolo/fastapi FastAPI is a modern, fast (high-performance), web framework for buil fastapi.tiangolo.com my_awesome_api=FastAPI() in m..
docker 문법 및 명령어 docker에서 내가 원하는 명령어를 알고싶을 때마다 다른 블로그를 찾아야 해서 새롭게 알게됬고 잊어버릴 만한 내용들을 정리용으로 작성한다. 계속 업데이트 예정 1. 모든 매핑안된 volume 삭제하기 docker volume rm $(docker volume ls -f dangling=true -q) 2. 사용하지 않는 컨테이너, 볼륨, 네트워크, 이미지, 오브젝트 일괄 삭제 docker container/volume/network/image/system prune (--filter를 이용해서 조건가능)
(미해결)(에러) 2 way of Mongod command in docker-compose Mongod를 실행할 때 docker-compose에서 command로 실행하는것과 command에서 script를 통해서 실행하는 것이 차이가 있는지 없는지 알아보자. 사실상 이 둘은 같다고 생각한다. version: "3.0" services: test_container: image: debian:10-slim volumes: - "./test:/test" command: echo "TEST" version: "3.0" services: test_container: image: debian:10-slim volumes: - "./test:/test" command: bash -c "/test/test.sh" #test.sh echo "TEST" 그러니까 command는 container가 시작되고 나..