[Eclipse] SVN 사용하기.

ITWeb/개발일반 2011. 9. 7. 13:46

1. eclipse 를 실행 합니다.

2. Help 메뉴에서 Install Software 를 선택 합니다.

3. Add 버튼을 누릅니다.

4. url 에 아래 정보를 입력 합니다.

    http://subclipse.tigris.org/update_1.6.x

5. subclipse 를 선택해서 설치를 합니다.

6. repository 등록 합니다.

:

ant 설치하기.

ITWeb/서버관리 2011. 9. 7. 13:45

# 다운로드

    http://ant.apache.org/bindownload.cgi


# 압축풀기

    tar -xvzf apache-ant-1.8.2-bin.tar.gz

 

# configure & make

    cd /home/계정/app

    mkdir ant

    cd ant

    mv -f /home/계정/dist/apache-ant-1.8.2/* .

:

tomcat 설치하기.

ITWeb/서버관리 2011. 9. 7. 13:44

# 다운로드

    http://tomcat.apache.org/download-60.cgi


# 압축풀기

    tar -xvzf apache-tomcat-6.0.32.tar.gz

 

# configure & make

    cd /home/계정/app

    mkdir tomcat-6.0.32

    cd tomcat-6.0.32

    mv -f /home/계정/dist/apache-tomcat-6.0.32/* .

    ln -s /home/계정/app/tomcat-6.0.32 tomcat

 

# 환경변수 설정

    vi .bash_profile

        JAVA_HOME=/home/계정/app/java/jdk
        CATALINA_HOME=/home/계정/app/tomcat
        PATH=$JAVA_HOME/bin:$PATH:$HOME/bin

        export PATH
        export JAVA_HOME
        export CATALINA_HOME

:

JDK 설치하기.

ITWeb/서버관리 2011. 9. 7. 13:43

# 다운로드

    http://www.oracle.com/technetwork/java/javase/downloads/index.html


# 실행 퍼미션 지정

    chmod 744 jdk-6u25-linux-i586.bin or x68

 

# configure & make

    cd /home/계정/app

    mkdir java

    cd java

    mv -f /home/계정/dist/jdk1.6.0_25 .

    ln -s /home/계정/app/java/jdk1.6.0_25 jdk

    yum remove java-1.4.2-gcj-compat.x86_64

    yum remove java-1.6.0-openjdk.x86_64

 

# 사용자 환경변수 설정

    vi .bash_profile

        JAVA_HOME=/home/계정/app/java/jdk
        PATH=$JAVA_HOME/bin:$PATH:$HOME/bin

        export PATH
        export JAVA_HOME

:

tomcat connector 소스설치하기

ITWeb/서버관리 2011. 9. 7. 13:42

# 다운로드

    http://tomcat.apache.org/download-connectors.cgi

 

# 압축풀기

    tar -xvzf tomcat-connectors-1.2.31-src.tar.gz

 

# configure & make

    cd tomcat-connectors-1.2.31-src/native

# buildconf 실행 시 오류 발생    

libtoolize --force --automake --copy
./buildconf.sh: line 23: libtoolize: command not found

    이런 경우 yum -y install libtool 설치

 

    ./configure --with-apxs=/home/계정/app/httpd/bin/apxs

    make

    make install

: