일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- import
- bash
- vscode
- 줄바꿈 문자
- ssh
- 네트워크
- IntelliJ
- netsh
- 단축키
- profile
- tomcat
- Source
- grep
- JavaScript
- Windows
- resource
- Windows 10
- plugin
- Eclipse
- VirtualBox
- Mac
- xargs
- GIT
- port
- find
- lsof
- web.xml
- maVen
- context
- Quartz
- Today
- Total
목록분류 전체보기 (1764)
develog
프로세스 확인tasklist /v | findstr java 프로세스 종료taskskill /pid 프로세스번호
Cron Expressions http://quartz-scheduler.org/documentation/quartz-2.x/tutorials/crontrigger http://quartz-scheduler.org/documentation/quartz-2.2.x/tutorials/tutorial-lesson-06 http://quartz-scheduler.org/api/2.2.0/org/quartz/CronExpression.html Field Name Allowed Values Allowed Special Characters Seconds 0-59 , - * / Minutes 0-59 , - * / Hours 0-23 , - * / Day-of-month 1-31 , - * ? / L W Month 1..
quartz 버전Quartz 2.2.0 full distribution jar 파일lib/log4j-1.2.16.jarlib/quartz-2.2.0.jarlib/slf4j-api-1.6.6.jarlib/slf4j-log4j12-1.6.6.jar TestMain.javaimport org.quartz.CronTrigger;import org.quartz.Job;import org.quartz.JobDetail;import org.quartz.JobExecutionContext;import org.quartz.JobExecutionException;import org.quartz.Scheduler;import org.quartz.SchedulerFactory;import org.quartz.impl.StdS..
디렉토리 용량 확인du . -h --max-depth=1 | sort -n -r
▶명령문 구성iptables [command] [INPUT|OUTPUT|FORWARD] [option] -j [ACCEPT|DROP|REJECT] ▶변경내용 저장service iptables save ▶시작, 종료, 재시작service iptables startservice iptables stopservice iptables restart ▶기타DROP - 무응답 (응답을 보내지 않음)REJECT - 거절응답 (거절응답을 보냄) 정책 초기화 iptables -F INPUT 기본정책 설정 iptables -P INPUT ACCEPT 방화벽 설정 확인 iptables -L 정책 추가 # 체인 가장 상단에 등록iptables -I INPUT -p tcp --dport http -j ACCEPT # 체인 가장..
▶설치환경Host OS : Windows 7 64bitGuest OS : CentOS 64bitVirtualBox : 4.2.16VirtualBox Host-Only Network, IPv4 (192.168.56.101) ▶VirtualBox 에 Cent OS 설치- 새로 만들기이름 : CentOS종류 : Linux버전 : Red Hat (64 bit)- 메모리 : 512 MB- 하드 드라이브 : 지금 가상 하드 드라이브 만들기(C)- 하드 드라이브 파일 종류 : VDI (VirtualBox 디스크 이미지)- 물리적 하드 드라이브에 저장 : 동적 할당- 파일 위치 및 크기 : CentOS- 만들기 ▶Cent OS 설정 변경- 'CentOS (전원 꺼짐)' 선택- 설정 - 네트워크 - 어댑터 2- '네트워..