(주)누리웨어

화상연동/Web,APP 구축및서비스/LMS/평생교육/학점은행/기업교육/연수관리/설문구축/

1월, 2016

Linux user jboss .bash_profile Sample

# .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi # User specific environment and startup programs PATH=$PATH:$HOME/bin export PATH umask 022 #환경변수 JAVA_HOME=/app/jdk/jdk1.7.0_80 JBOSS_HOME=/app/was/EAP-6.4.0 DOMAINS_HOME=/app/was/domains/ HTTPD_HOME=/app/web/apache2 PATH=.:$HTTPD_HOME/bin:$JAVA_HOME/bin:$PATH #환경변수 적용 export JAVA_HOME JBOSS_HOME PATH export JENKINS_HOME=/app/jenkins export LANG=ko_KR.utf8 export EDITOR=vi export HISTFILE=$HOME/.bash_history export TMP=/tmp export TMPDIR=/tmp PS1=whoami@hostname‘:$PWD> ‘ […]

Linux 유용한 명령어 rename 과 mv

mv 파일명 변경 또는 파일위치 변경 보통 한개의 파일명 변경할때 사용 mv 옵션 소스데이타 바뀔데이타 mv access.log access.log.20150125 rename 여러개의 파일명 변경시 사용 rename jpg(바꿀파일명) JPG(바뀔파일명) *.jpg(이 파일중에서)

개발서버 – httpd+ jboss 의 Apache 설정

1)httpd.conf 설정 Include conf.d/mod_jk.conf # Virtual hosts Include conf/extra/httpd-vhosts.conf 2)/apache2/conf.d/ 안의파일 mod_jk.conf, uriworkermap.properties, workers.properties (1) mod_jk.conf

(2)uriworkermap.properties

(3)workers.properties

3)httpd-vhosts.conf ServerAdmin webmaster@dummy-host.example.com DocumentRoot “/web/apache2/htdocs/aaa1” ServerName aaa1.nuriware.com ServerAlias aaa1.nuriware.com ErrorLog “| /web/apache2/bin/rotatelogs /web/apache2/logs/lms-error.log.%Y%m%d 86400” CustomLog “| /web/apache2/bin/rotatelogs /web/apache2/logs/lms-access.log.%Y%m%d 86400” common SetEnvIf Request_URI “/webimg/*” no-jk JkMount / aaa1 JkMount /* aaa1 ServerAdmin webmaster@dummy-host.example.com DocumentRoot “/web/apache2/htdocs/bbb1” […]

Jenkins 설치 가이드

Redhat 의 경우 1.다운로드 http://pkg.jenkins-ci.org/redhat/ 에서 최신 jenkins rpm 파일을 다운로드 한다. 2.개발서버에 복사 1.ftp를 통해 개발서버에 복사(내부망이며 외부접근이 안될경우) 2.wget를 통해 다운로드 3. 설치 (1)터미널로 개발서버에 접속 root계정으로 로그인한후 rpm파일이 있는 디렉토리로 이동 #rpm -Uvh jenkins-1.xxxxxx.noarch.rpm (2)RPM패키지가 정상적으로 설치되었는지 확인 #rpm -ga | grep jenkins (3)설치되었음을 확인했으면 #service jenkins start 4.Jenkins 홈 디렉토리 변경 […]