29 09 2014
http://troy.labs.daum.net/
화상연동/Web,APP 구축및서비스/LMS/평생교육/학점은행/기업교육/연수관리/설문구축/
29 09 2014
http://troy.labs.daum.net/
27 09 2014
1.DDL문을 추출후 수정하고 옮길 데이타베이스쪽에 생성한다. 2.export: data(rows)만 덤프를 만들다 3.import : 끝
27 09 2014
http://www.slideshare.net/opennaru/khan-report-20140225204934jbosseapdomain-31644064
25 09 2014
기본설치
1 |
yum -y install gcc gcc-c++ openssl-devel perl |
다운로드 http://httpd.apache.org/download.cgi#apache24 사이트에서
1 2 3 |
root]# wget http://mirror.apache-kr.org//httpd/httpd-2.2.29.tar.gz root]#tar xvf httpd-2.2.29.tar.gz |
압축해제 필요한 파일 설치 Apache2.4.x 버전 설치 기존의 apache2.4.x 버전부터는 apr과 apr-util을 별로도 설치하여야 합니다. 하위버전에서는 설치파일에 포함되어 있었으나 버전 업이 되면서 삭제되어 configure를 실행하면 아래와 같은 에러메시지를 발생하면서 종료됩니다. Checking for APR… no Confgirue: error: APR not found. Please read the documentation 소스 수정
1 2 3 4 5 |
root]# vi [경로]/httpd-2.4.10/server/mpm/prefork/prefork.c #ifndef DEFAULT_SERVER_LIMIT #define DEFAULT_SERVER_LIMIT 2048 #endif |
[…]
25 09 2014
설치 ]#cat /etc/ssh/sshd_config | grep sftp Subsystem sftp /usr/libexec/openssh/sftp-server sshd의 서브시스템에 sftp가 설정되어 있음 # rpm -qf /usr/libexec/openssh/sftp-server openssh-server-5.3p1-81.el6.x86_64 sftp 서버 모듈은 openssh-server에 최소 패키지 목로에 포함된다. 그러므로 이미 설치되어 있다. 환경설정 vi /etc/ssh/sshd_config #Port 22 –> Port 1234 ( 별도의 포트를 열어주고 iptables에 추가한다.) ]#chkconfig –list|grep sshd sshd 0:off 1:off 2:on 3:on 4:on 5:on […]
25 09 2014
1.환경점검 #which java /usr/bin/java 2.32 or 64 bit 확인 #getconf LONG_BIT 64 http://www.oracle.com/technetwork/java/javase/downloads/java-archive-downloads-javase7-521261.html#jdk-7u45-oth-JPR 다운받을 파일은 jdk-7u45-linux-x64.gz(64bit용 jdk7) opt]#gunzip jdk-7u45-linux-x64.gz opt]#tar -xvf jdk-7u45-linux-x64 opt]#ls -rw-r–r–. 1 root root 288481280 Sep 25 10:31 jdk-7u45-linux-x64 drwxr-xr-x. 8 uucp 143 4096 Oct 8 2013 jdk1.7.0_45 drwxr-xr-x. 2 root root 4096 Jun 22 2012 rh opt]#ln -s jdk1.7.0_45 java7 opt]#update-alternatives […]
25 09 2014
# getconf LONG_BIT32이렇게 결과가 나오면 32비트 이고,64라고 나오면 64비트이다.
25 09 2014
#]unset LANG 실행
18 09 2014
먼저 nexus서버에 접속하여 사용하고자하는 jar(라이브러리) 파일등록하기 1. 관리자계정으로 로그인 후 (브라우저는 IE는 피한다. 작동이 안되는 버튼이 발생) 2.그림과 같이 클릭. 3.pom.xml 에 <dependency> <groupId>nl.captcha</groupId> <artifactId>SimpleCaptcha</artifactId> <version>1.2.1</version> </dependency> 이런식으로 추가하면 끝.
5 09 2014
1.mkdir 하면 rwxr-xr-x로 되는것은 umask 022로 되있어서 그런데 이것은 rwxrwxrwx(777) – 022 하면 755 가되서 저렇게 됩니다. 이걸 umask 002 라고 쓰고 엔터를 하고 mkdir abc 하면 rwxrwxr-x 이렇게 바뀝니다. 2.FTP등의 프로그램의 경우는 conf 파일에 설정하는 부분이 있습니다 022 –> 002로 바꾸시면 됩니다.