'2017/10'에 해당되는 글 3건

1. 스케쥴러 설정

schtasks /create /tn enc /tr "c:\batch.bat" /sc minute /mo 1

2. 스케쥴러 삭제

schtasks /delete /tn enc

batch.bat
0.00MB

'linux, windows' 카테고리의 다른 글

nfs(Network File System) 명령어  (0) 2019.11.07
리눅스 메모리 확보  (0) 2017.11.03
svn 체크아웃  (0) 2017.10.11
CentOS에서 무료 SSL 인증서 설치  (0) 2017.02.20
CentOS - CPU 점유율이 80% 이상일때  (0) 2015.06.19
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

1. hudson 공식홈페이지에서 .war 버전 다운로드후 톰캣의 webapp 추가

https://www.eclipse.org/hudson/download.php

2. 브라우저 http://127.0.0.1/hudson 접속 후 plugins 선택후 설치

3. hudson 설정

- 관리 > System Configurations > jdk, ant, maven

- 새작업 추가 > Subversion 설정

- Build Triggers > Poll SCM > * * * * *

- Post-build Actions > post build task > Log text : BUILD SUCCESS > Script : batch.sh

 

* batch.sh

#!/bin/sh
unzip -o /root/.hudson/jobs/project/workspace/target/project-3.6.0.war -d /data/project/

 

블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

svn 체크아웃

linux, windows 2017. 10. 11. 13:22
svn checkout svn://1.1.1.1/projct/ /data/project

 

블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,