본문 바로가기

Server

make install make install 하다가 실패하면.. make clean
SVN 다중 저장소 svn 기본 포트는 3690 하나의 저장소에 여러개의 프로젝트를 관리하는건 위험할 수 있다. 이에 아래 구조처럼 2개의 저장소를 따로 사용하고자 할 경우 1 > /home/svn/dev/ 2 > /home/svn/sample/ 1번은 3690 포트로 시작하고, 2번은 3691 포트로 시작하면 된다. 1> svnserve -d -r /home/svn/dev --listen-port 3690 2> svnserve -d -r /home/svn/sample --listen-port 3691 확인. 1> svn ls svn://localhost:3690/ 2> svn ls svn://localhost:3691/
Ubuntu 12.0.4 Oracle 11g R2 설치. Ubuntu 12.0.4 amd64 기준. http://ioriy2k.pe.kr/archives/656#comment-10614 http://ioriy2k.pe.kr/archives/712 http://www.makina-corpus.org/blog/howto-install-oracle-11g-ubuntu-linux-1204-precise-pangolin-64bits Ubuntu 12.0.4 x86 기준 http://www.techienote.com/2012/06/how-to-install-oracle-database-11g-r2-on-ubuntu-12-04.html
ant에서 Problem: failed to create task or type foreach 오류. apt-get install ant 로 설치 했다면 아래도 설치 해준다. sudo apt-get install ant-contrib 그리고 sudo cp /usr/share/java/ant-contrib.jar /usr/share/ant/lib
svn: OPTIONS of 'https://~~~~': SSL handshake failed: SSL error: Key usage violation in certificate has been detected. Ubuntu에서 이딴 에러를 뱉어낸다.. Ubuntu의 버그이다. sudo apt-get update sudo apt-get install libneon27 sudo mv /usr/lib/libneon-gnutls.so.27 /usr/lib/libneon-gnutls.so.27.old sudo ln -s /usr/lib/libneon.so.27 /usr/lib/libneon-gnutls.so.27 인증키에 관련된 에러는 없어지지만 아래와 같은 또다른 에러가 나타난다. SSL handshake failed: SSL disabled due to library version mismatch 여기에서 자신에게 해당하는 버전의 libneon27을 다운받아 설치해주어야 한다. http://packages.debia..
svn 프로세스 죽이기. killall svnserve 이후 재시작 svnserve -d -r {repo path}
svn 필수 설정들. >>authz 모든 저장소에 유저를 두고 싶다는 가정하에.. [/] user = rw [/] 안해주어서 20분정도 고생함.. >> svnserve.conf anon-access = none anon-access = read 로 되어 있는데 none으로 바꾸어주어야 한다.
apt-get으로 sun-java 를 설치하고자 할 경우 apt-cache search sun-java 를 검색을 했는데 없다. sun-javadb-client - Java DB client sun-javadb-common - Java DB common files sun-javadb-core - Java DB core sun-javadb-demo - Java DB demo sun-javadb-doc - Java DB documentation sun-javadb-javadoc - Java DB javadoc 어찌되었나 싶었더니 어느샌가 openjdk로 바뀌었나 보다... openjdk-6-jdk - OpenJDK Development Kit (JDK) openjdk-6-jre - OpenJDK Java runtime, using Hotspot JIT openjd..