Category Archives: SCM/ITS

paros-customize 를 위한 github 저장소 생성

  paros customize를 위한 개발환경 설정 – github에 가입하고 로그인 한다.(생략) – 상단의 Create a new repo 버튼으로 새로운 저장소를 생성한다 입력할게 없이 간단하다. 저장소 생성 결과화면 – 콘솔에서 생성한 git의 clone 을 만든다 – paros의 원본 소스를 받는다. http://www.parosproxy.org/download.shtml … Continue reading

Posted in Java/JSP, SCM/ITS, Security/Hacking | Tagged , , | Leave a comment

websvn 설치

  svn 리파지토리를 웹으로 봐야 하는 일이 생겼다. 그래서 리파지토리 뷰를 위해 websvn 을 설치해보았다. 1. WebSVN 다운로드 – http://websvn.tigris.org 2. WebSVN 압축 해제 $ tar zxvf websvn-2.3.3.tar.gz $ mv websvn-2.3.3 /var/www $ cd /var/www $ ln -s ./websvn-2.3.3 websvn … Continue reading

Posted in SCM/ITS, WEB/WAS | Tagged , , , , , , | Leave a comment

nexus 설치 및 설정

  nexus 설치 및 설정 URL : http://www.sonatype.org/nexus/go Download Nexus 2.3.0 설치 및 서비스 포트 변경 ]$ wget http://www.sonatype.org/downloads/nexus-2.3.0-04-bundle.tar.gz ]$ tar xvzf nexus-2.3.0-04-bundle.tar.gz ]$ cd nexus-2.3.0-04 ]$ vi conf/nexus.properties … # Jetty section application-port=8090 application-host=0.0.0.0 nexus-webapp=${bundleBasedir}/nexus nexus-webapp-context-path=/nexus … ]$ ./bin/nexus … Continue reading

Posted in SCM/ITS | Tagged , , , | Leave a comment

GitHub(깃허브)와 프로그래밍의 민주화와 내생각…

  주제 : GitHub(깃허브)와 프로그래밍의 민주화 URL : http://www.looah.com/article/view/866 1. 기억에 남는 문구 / 질문 / 생각 프로그래밍이 민주화되고 있다 CVS와 SVN은 중앙집중형 버전 컨트롤 시스템으로, 중앙 서버 없이는 아무 것도 할 수 없다 Git은 다르다. 이것은 분산형 버전 컨트롤 … Continue reading

Posted in Etc, SCM/ITS | Tagged , , | Leave a comment

eclipse svn의 url 변경

  사무실을 이전하면서 redmine 과 svn 의 ip 가 바꿨다. 그에 따라 svn 서버의 주소도 바꿨다. 그런데 이클립스의 프로젝트들은 모두 예전 ip의 svn 을 바라보고 있어서 update 가 안된다. 이럴때는 이클립스에서 SVN Repository Exploring Perspective 으로 변경해서 리파지토리에 마우스 우클릭하여 … Continue reading

Posted in SCM/ITS, Util/Tools | Tagged , , | Leave a comment

redmine 실행시 에러( warning: Insecure world writable dir /path in PATH, mode 040777 )

  redmine 구동을 위해 ctlscript.sh start 시 mysql 이 뜨면서 아래와 같은 에러 발생. warning: Insecure world writable dir /path in PATH, mode 040777 /path에 권한 변경 ]# chmod go-w /path 그리고 방화벽 허용 ]# iptables -F ]# iptables -A … Continue reading

Posted in SCM/ITS | Tagged , , , | Leave a comment

redmine DB 백업, 파일 백업 스크립트

  redmine DB 백업, 파일 백업 스크립트 #!/bin/bash DATETIME=$(date +”%Y%m%d%H%M”) # DB backup mysqldump -u root -p******* redmine_dbname | gzip > /redmine_backup_dir/$DATETIME.sql.gz # file backup rsync -avz –delete /redmine_install_dir/files /redmine_backup_dir/ # delete old files find /redmine_backup_dir/ -name *.gz -mtime +90 … Continue reading

Posted in SCM/ITS, System | Tagged , , , , , | Leave a comment

svn https 접속 안됨(Failed to load JavaHL Library)

  Failed to load JavaHL Library. 에러 발생. javahl 설치 yum install subversion-javahl 설치된 위치 확인 find /usr/lib -name *javahl* eclipse.ini에 library path 추가 -vmargs -Djava.library.path=/usr/lib window > preferrences > team > svn 의 svn interface 의 client 가 javaHL(JNI) … Continue reading

Posted in SCM/ITS, Util/Tools | Tagged , , , , , , | 1 Comment

서버 재시작시 redmine 자동시작 스크립트

  서버 재시작시 redmine 자동시작 스크립트 1. init.d에 redmine 스크립트 작성 ]# vi /etc/init.d/redmine #!/bin/bash # redmine case “$1” in start) echo -n “Starting redmine: ” /home/redmine-1.0.3-0/ctlscript.sh start echo ;; stop) echo -n “Shutting down redmine : ” /home/redmine-1.0.3-0/ctlscript.sh stop … Continue reading

Posted in SCM/ITS, System | Tagged , , | Leave a comment

GIT 설치

  GIT를 컴파일하는데 필요한 의존적인 라이브러리를 모두 설치 # yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel GIT 사이트 : http://git-scm.com/download # wget http://kernel.org/pub/software/scm/git/git-1.7.3.5.tar.bz2 # tar -xvf git-1.7.3.5.tar.bz2 # cd git-1.7.3.5 # make prefix=/usr/local all # make prefix=/usr/local install $ git … Continue reading

Posted in SCM/ITS | Tagged , , | Leave a comment