-
Sonar 설치 + Jenkins 연동
-
SonarQube를 이용한 지속적인 품질 관리
-
젠킨스 설정
-
젠킨스 msbuild 로 컴파일 하기
n my previous article “Getting Started with Jenkins and GitHub” I showed you how to create your first Jenkins job and download the source of your project from GitHub. If your projects are stored in TFS you can read how to setup your Jenkins job for TFS here: “Integrate Jenkins with Team Foundation Server“. The next logical step…
-
CI System (Jenkins) 구축하기 – 1
-
[Jenkins] 설치후 Security 설정하기
jenkins를 설치하고 로그인 Security 설정하는 법을 알아보자. 1) 우선 jenkins.war 을 다운로드 받는다. – http://jenkins-ci.org 사이트 방문 – war 파일 다운로드 하기 (윈도우의 exe 버전은 받지 말자) 2) 특정 디렉토리에 jenkins.war파일을 놓고, bat 파일을 만들자 – d:/jenkins/jenkins.war 파일 놓기 – d:/jenkins/startJenkins.bat 파일 만들기 (물론 JDK1.5 이상 버전으로 pre-install 되어 있어야 한다) java -jar ./jenkins.war 3) jenkins를…
-
Linux CentOS 에 Jenkins 설치
CentOS 에서 Jenkins 설치 하는 과정 이다. 환경 CentOS 6.x Java 1.6 Tomcat6 Apache Jenkins Download 간단히 yum 명령어를 통해 받아올 것이다. 그런데, 보통 yum repository에 등록되어 있지 않으므로 수동으로 등록 해 준다. 1 2 wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo rpm –import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key Yum Install 1 2 3 4 yum install jenkins # 설치 확인…
-
Install OwnCloud 7 on CentOS 7 / RHEL 7
Here is the small guide to setup ownCloud 7 on CentOS 7. Prerequisites: As mentioned earlier, it is based on PHP and database combination, database can be any of the above four. So install PHP, Apache web server and MySQL server on CentOS 7. For demo purpose i installed both SQLite and MySQL on CentOS,…
-
CentOS7 「vsftpd 설치하기」
VSFTPD 설정 ●vsftpd 설치 # yum -y install vsftpd ●vsftpd 설정 # vi /etc/vsftpd/vsftpd.conf 1.익명 로그인 금지 anonymous_enable=NO 2.아스기 모드 업로드 및 다운로드 허용 ascii_upload_enables=YES ascii_download_enables=YES 3.상위디렉토리 접근 금지(chroot_list에 기재 하면 상위로 올라감) chroot_local_user=YES chroot_list_enable=YES chroot_list_file=/etc/vsftpd/chroot_list 4.chroot를 사용하면 홈 디렉토리의 다른 계정까지 리스팅 되기 때문에 다른계정은 볼수 없게 처리 allow_writeable_chroot=YES 5.디렉토리마다 삭제 할수 있도록하기 ls_recurse_enable=YES…
-
SCP 명령어를 이용하여 파일 주고 받기
보안상을 이유로 시스템의 FTP를 이용하지 못할경우 SCP를 이용하여 파일을 전송하는 방법을 알아보자 SCP는 기본적으로 시스템에서 SSH 서버가 동작중이면 접근이 가능하다. 파일보내기 – SSH 접근 포트번호가 기본적인 22번일 경우 scp “전송할 파일명” id@hostname:”전송할 파일을 저장할 경로” ex> scp /etc/test.tar test@192.168.0.10:/home/test – SSH 접근 포트번호를 7777번으로 변경하였을 경우 scp -P 7777 “전송할 파일명” id@hostname:”전송할 파일을 저장할 경로” 파일받기…