반응형

서버 10

network blip

네트워크 블립(Network Blip): 짧은 네트워크 장애를 설명하는 "공식적인" 표현으로, 원인을 조사하기 귀찮을 때 사용하는 표현입니다."네트워크 접근이 복구되었습니다. 잠깐의 네트워크 블립이 있었습니다."   https://klarciel.net/wiki/network/network-blip/ Strategies for Handling Network Blips; Ensuring Resilience in Distributed SystemsFault Tolerance; Retry Mechanism, Circuit Breaker, Timeout, Fallback, Graceful Degradationklarciel.net

서버 2025.01.10

terminal. 파일 용량 확인 및 하루 지난 파일 제거 crontab

서버 내 용량 조회 시 df -h   현 디렉토리 내 폴더 용량 조회 시 du -sh * -s : summarize-h : human-readable-c : check more than one directory and see the total    하루 지난 파일 제거 # 새벽 3시에 실행0 3 * * * find /var/log -type f -mtime +1 -exec rm -f {} \;# 5분마다 실행*/5 * * * * find /var/log -type f -mtime +1 -exec rm -f {} \;  참고 >[Linux] 파일 및 디렉토리(directory) 용량 확인하기 [Linux] 파일 및 디렉토리(directory) 용량 확인하기디스크 별 용량 확인이 필요하면 df -h # di..

서버/터미널 2024.12.10

[docker] docker: Error response from daemon: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "/bin/fortuneloop.sh": permission denied: unknown.

이슈 fortuneloop.sh#!/bin/bashtrap "exit" SIGINTINTERVAL=$1echo Configured to generate new fortune every $INTERVAL secondsmkdir -p /var/htdocswhile :do echo $(date) Writing fortune to /var/htdocs/index.html /usr/games/fortune > /var/htdocs/index.html sleep $INTERVALdone DockerfileFROM ubuntu:latestRUN apt-get update ; apt-get -y install fortuneADD fortuneloop.sh /bin/fortuneloop.shENTRYPOINT ["..

서버/docker 2024.10.02

[docker] Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

이슈 Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 참고링크 https://somjang.tistory.com/entry/Docker-Cannot-connect-to-the-Docker-daemon-at-unixvarrundockersock-Is-the-docker-daemon-running-%ED%95%B4%EA%B2%B0-%EB%B0%A9%EB%B2%95 [Docker] Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 해결 방법오랜만에 mac에서 D..

서버/docker 2024.10.01

/dev/null, 1>/dev/null, 2>/dev/null

일하다가 보면 스크립트에 /dev/null 로 작성된 것을 볼 수 있는데 어떤 건지 궁금해서 찾아보았다. /dev/null /dev/null 은 블랙홀이라고 이해하면 된다. 이 경로에 보내지는 모든 파일과 데이터들은 블랙홀에 빨려들어가서 무가 된다는 것을 의미한다. - 1>/dev/null : 표준 출력을 /dev/null 로 redirection - 2>/dev/nul : 표준 에러를 /dev/null 로 redirection 참고 - https://inpa.tistory.com/entry/%EB%A6%AC%EB%88%85%EC%8A%A4-devnull-%EB%A6%AC%EB%8B%A4%EC%9D%B4%EB%A0%89%EC%85%98-%EA%B8%B0%ED%98%B8-%EC%A2%85%EB%A5%98 ..

서버/터미널 2023.07.02

terminal. 명령어 history

echo $HISTFILE history - !-3 : 3번째 최신것 실행 - !{command_name} : 으로 명령어 검색 가능 > 하지만 바로 실행된다. ㄴ !ping:p 이렇게 치면 어떤 명령어인지 보여줌 위 화살표 / ctrl + p : 명령어 히스토리 아래 화살표 / ctrl + d : 명령어 히스토리 ctrl + r : recall 모드로 진입 > 검색 가능 ctrl + g 로 나오기 가능 history 삭제 시 history -d 107 history -c : 전체 삭제 # history에 시간날짜 기록하고 싶을 때 HISTTIMEFORMAT="%d/%m/%y %T" Bash HISTSIZE vs. HISTFILESIZE | Baeldung on Linux In this tutorial,..

서버/터미널 2022.05.08

terminal. 명령어 형식

명령어 [옵션] [인자값] 리눅스 명령어 실행 형식의 종류에는1. 명령어 만 사용하는 경우2. 명령어 옵션 을 사용하는 경우3. 명령어 옵션 인자값 을 사용하는 경우4. 한 줄에 여러 명령어 를 사용하는 경우예1)#ls예2)#ls -l예3)#ls /tmp예4)#ls ; date 옵션의 순서는 변경 할 수도 있으나 옵션의 인자값이 있을 때는 주의해야 한다.#명령어 -l -k 인자값 (O)#명령어 -k 인자값 (O)#명령어 -lk 인자값 (O)#명령어 -kl 인자값 (X)  cf) man 다음에 명령어 치고 설명 확인 가능하다  - 화살표로 줄 간 이동 가능 - ctrl + f 나 스페이스로 페이지 간 이동 가능 - ctrl + b 로 백페이지로 이동 가능 - g : 맨 앞 페이지 - G : 맨 뒤 페이지 ..

서버/터미널 2022.05.01

terminal. 자주 쓰는 명령어

스크립트 실행 - /bin/sh first - ./first 출력 재지정 명령어 > 파일 : 명령어의 표준 출력 내용을 모니터에 출력하는 대신 파일에 저장 - ls -l > lsoutput.txt - ps >> lsoutput.txt : 파일 뒤에 새로운 내용 덧붙이고 싶으면 입력 재지정 명령어 < 파일 : 명령어의 표준입력을 파일에서 받음 - wc < a.txt : a.txt의 줄 단어 수 출력 find 명령어 find /etc : /etc 경로안 파일 검색 find -name "test" : 파일 이름 지정 검색 find -etc -maxdepth 2 -name 'x*' : 서브 디렉터리 검색 깊이 지정 find -newer game.py : -newer 옵션 뒤에 적힌 파일보다 최근에 변경한 파일 ..

서버/터미널 2021.10.07

terminal. 특정포트에서 사용중인 프로세스 확인/종료 (mac/window)

mac sudo lsof -i :8000sudo kill -9 14872  [꿀팁] mac - 특정 포트를 사용중인 프로세스 확인/종료mac - 특정 포트를 사용중인 프로세스 확인/종료 node 작업을 프로젝트를 넘나들면서 하다보니 이유는 모르겠지만 터미널이 꺼졌는데도 불구하고 port상태는 listen인 경우가 있었다. 이때 특정 포new93helloworld.tistory.com   windownetstat -ano | findstr 8080taskkill /pid 4988 /F

서버/터미널 2021.10.07
반응형