일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 원격 연결 포트 포워딩
- django windows 배포 에러
- Problems occurred while performing provisioning operation
- apache pythonpath
- 2661 java
- django apache deploy error
- java di
- django httpd error
- 2961 도영이가 만든 맛있는 음식
- 14711 타일 뒤집기
- django 웹 페이지
- The requested operation has failed!
- django 프로젝트 시작
- 1188 java
- 2643 java
- 1188 음식 평론가
- 2661 좋은 수열
- django settings.py
- 18233 java
- windows 원격 연결 설정
- 2643 색종이 올려 놓기
- 18233 러버덕
- 18233 비트마스킹
- APPEND_SLASH = FALSE
- django
- 2961 java
- 14711 java
- 공유기 원격 설정
- windows apache wsgi 에러
- django The requested operation has failed!
목록Linux/Ubuntu (3)
라이브러리는 도서관 아닌가요
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