일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 코딩 테스트
- Routing
- docker
- database
- programmers
- 스노트
- 리눅스
- Cosmos
- 프로그래머스
- 라우터
- 라우팅프로토콜
- Router
- 코딩테스트
- snort
- 트레바리
- MySQL
- coding test
- 도커
- 라우팅
- Container
- 스노트 룰
- Snort Rule
- osi7layer
- Linux
- Python
- 컨테이너
- 데이터베이스
- db
- TDD
- OSI7계층
- Today
- Total
목록프로세스 (2)
Simple is IT, 누구나 보고 누구나 깨닫는 IT
psql 접속 중 오류가 발생했어요. 잘 사용해 왔는데, 갑자기 왜 이럴까... 궁금해졌죠. 이유는 간단해요! 내부 postmaster.pid 파일이 발생시키는 Process 충돌 때문입니다. 아래 명령어로 간단하게 해결이 가능해요! $ brew services stop postgresql Stopping `postgresql`... (might take a while) ==> Successfully stopped `postgresql` (label: homebrew.mxcl.postgresql) $ rm /usr/local/var/postgres/postmaster.pid $ brew services start postgresql ==> Successfully started `postgresql` (l..
Process디스크에 있던 프로그램을 메모리로 적재하는 것, 실행 중인 프로그램 상황에 따른 프로세스의 명칭 Command ps(실행 중인 프로세스를 나타냄, -ef 옵션 실행 시 모든 프로세스 자세히) pstree pgrep ps 명령어의 옵션 Process Control Command 시그널 번호 1 - SIGHUP(Sig Hang Up) : 프로세스 종료 없이 프로그램을 새로 초기화 2 - SIGINT, Interrupt(Ctrl + C) : 명령어 실행 중 중단 명령어 9 - SIGKILL, kill : 무시할 수 없는 종료(Strongest) 15 - SIGTERM, terminate : 무시할 수 있는 종료 kill : PID로 프로세스를 제어 pkill : 프로세스 이름으로 제어..