일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- apache pythonpath
- windows 원격 연결 설정
- Problems occurred while performing provisioning operation
- 원격 연결 포트 포워딩
- 2661 좋은 수열
- 2643 색종이 올려 놓기
- django apache deploy error
- django settings.py
- 2643 java
- django 웹 페이지
- windows apache wsgi 에러
- The requested operation has failed!
- 공유기 원격 설정
- 2661 java
- django 프로젝트 시작
- 14711 java
- 1188 음식 평론가
- django httpd error
- 18233 비트마스킹
- APPEND_SLASH = FALSE
- 18233 java
- java di
- 1188 java
- 14711 타일 뒤집기
- django
- 2961 도영이가 만든 맛있는 음식
- 18233 러버덕
- django The requested operation has failed!
- django windows 배포 에러
- 2961 java
목록Linux (4)
라이브러리는 도서관 아닌가요
The general job control commands in Linux are: jobs - list the current jobs fg - resume the job that's next in the queue fg %[number] - resume job [number] bg - Push the next job in the queue into the background bg %[number] - Push the job [number] into the background kill %[number] - Kill the job numbered [number] kill -[signal] %[number] - Send the signal [signal] to job number [number] disown..
버전 확인 /usr/sbin/apache2 -V 로그 위치 cd /var/log/apache2/ 접속 로그 보기 ( 마지막 3줄 ) tail -3 /var/log/apache2/access.log 에러 로그 보기 ( 마지막 2줄 ) tail -2 /var/log/apache2/error.log 이외에도 로그 위치에서 ls -al 같은 명령어로 많은 로그들을 살펴볼 수 있다.
리눅스에서 파일 or 디렉토리 검색할 때는 find를 사용. find [경로] -name [파일_이름] 해당 경로 이하를 모두 찾는다. 예) log4j로 시작되는 모든 파일을 찾는다고 해보자. 전체 경로 검색 find / -name log4j* 현재 디렉토리에서 검색 find ./ -name log4j* Permission 예외를 안 뜨게 하려면, sudo find / -name log4j* 2>/dev/null Permission 예외만 안 보려면, (다른 예외들만 뜨게 하려면) sudo find / -name log4j* 2>&1 | grep -v Permission
우리는 Linux 환경에서 systemctl, journalctl 등의 명령어를 쉽게 접한다. (ctl은 control의 축약어이다.) 여기서 systemctl을 포함하는 systemd Utilities가 무엇인지 먼저 살펴보아야 하는데, (아래의 사진 참조) 우선 systemd는 system daemon의 약자이다. 이 녀석은 Unix 기반의 시스템이 부팅 후 가장 먼저 생성되고 난 후에, '다른 프로세스를 실행하는 init 역할을 대체'하는 daemon이다. 이렇게 보니 괜히 어렵게 접근한 것 같은데, 서비스를 관리하는 하나의 어플리케이션이라고 접근하면 좋을 듯하다. 우리는 실제로 systemctl start [service_name] ...같은 명령어를 다룬 기억이 있다. 아래의 이미지를 살펴보면 ..