Tag Archives: 설치

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

CentOS yum install mysql 5.5

  CentOS 에서 yum 으로 설치할수 있는 mysql 버전은 5.0 이다. yum으로 mysql 5.5 버전을 설치하기 위해서 요렇게 하면 된다. MySQL 서비스 중지 ]# service mysqld stop yum repository 추가 ]# rpm -Uvh http://repo.webtatic.com/yum/centos/5/latest.rpm 다음으로 libmysqlclient15 설치 ]# yum install … Continue reading

Posted in Database | 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

php 5.1 > php 5.2 으로 업그레이드 하기

  php 5.1 > php5.2 으로 업그레이드 하기 yum설치를 기본으로 한다. ]# yum update php yum으로 php를 업데이트 해보면.. 최신버전은 5.1.6 이 설치된다. php 5.2 으로 업데이트를 하려면 yum 저장소를 추가해야한다. ]# vi /etc/yum.repos.d/CentOS-Testing.repo # CentOS-Testing: # !!!! CAUTION !!!! … Continue reading

Posted in PHP/ASP, WEB/WAS | Tagged , , , , , , | Leave a comment

터미널 색깔바꾸기

  터미널 ls할때 그 짙은 푸른색이 잘보이지도 않고 눈이 아파서 바꿀수있는지 찾아보았다… 기본 bash shell을 사용할 경우. # vi ~/.bashrc … export LS_COLORS=”di=01;33″:”fi=01;37″:”ex=01;32″:”ln=01;36″:”so=01;33″ # source ~/.bashrc “파일종류=속성;색상” ——————————————————————————- export LS_COLORS=”di=01;31″:”fi=01;37″:”ex=01;32″:”ln=01;36″:”so=01;33″ ——————————————————————————- 디렉토리 = 붉은색 일반파일 = 흰색 실행파일 = 연두색 … Continue reading

Posted in System | Tagged , , , , | Leave a comment

맥( Mac OSX) 에서 wget 설치하기..

  이런… Mac 을 쓰다보니.. wget이 없다… curl이 있긴한데.. 손에 안익어서 그런지 불편하다..ㅋㅋ 그래서 wget설치..ㅋ http://www.gnu.org/software/wget/ 에서 다운받는다 최신버전은 wget 1.2 이다. 다운받고 압출풀고 ]$ configure ]$ make ]$ sudo make install 하면 끝~ 우왕 좋당ㅋㅋㅋ  

Posted in System | Tagged , , , , | Leave a comment

groovy 설치 및 테스트.

  Groovy란 자바 플랫폼에서 실행하는 동적 애자일 언어이며 Python, Ruby, Smalltalk 언어로부터 영향을 받았습니다. 자바 개발자는 자바 비슷한 문법으로 이러한 특징들을 구현할 수 있습니다. 웹 어플리케이션 개발, 쉘 스크립트 사용, Groovy의 JUnit 기능을 이용한 간결하고 의미있는 테스트 케이스 작성, 어플리케이션 … Continue reading

Posted in Java/JSP | Tagged , , , | Leave a comment

CentOS 에 subversion 설치 백업 복구

  CentOS 에 subversion 설치 백업 복구 subversion 설치(yum설치 참 쉽죠잉~) ]# yum install subversion 포맷전에 백업한 프로젝트 ]$ svnadmin dump project > project_yyyymmdd.dump 프로젝트 생석후 복구 ]$ svnadmin create project ]$ svnadmin load project < project_yyyymmdd.dump svn 서버 구동 … Continue reading

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

CentOS5.2 + apache2.2.11 + php5.2.9 + Zend3.3.3 + Mysql5.0.45 설치

  자 우선 APM(apache+php+mysql) 부터 구성해놓고 Tomcat 까지 붙어보려고 검색을 해봤더니.. 아주 잘 설명된 블로그가 있어서 따라해봤다. http://plzu.tistory.com/57 내용을 보니 아마 어머어마한 내공의 소유자 인듯 하다.. 우선 내용대로 따라가보면서 진행해 보았다. mysql의 rpm버전에 소스컴파일버전보다 낮다고 하는데..(출처가 있었음 좋았을텐데..ㅋ) 일단 따라 … Continue reading

Posted in System, WEB/WAS | Tagged , , , , , , | 1 Comment

PostgreSQL 8.3.3 리눅스 설치..

  PostgreSQL 8.3.3 리눅스 설치.. 홈페이지 : http://www.postgresql.org/ ]$ ./configure ]$ gmake ]$ su ]# gmake install ]# adduser postgres ]# mkdir /usr/local/pgsql/data ]# chown postgres /usr/local/pgsql/data ]# su – postgres ]$ /usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data ]$ /usr/local/pgsql/bin/postgres -D /usr/local/pgsql/data &gt;logfile … Continue reading

Posted in Database | Tagged , | Leave a comment