본문 바로가기

전체보기161

JAVA_HOME 위치 - yum install 시에 /usr/lib/jvm 하단에 해당 설치된 java 가 존재함. 2018. 5. 9.
Tomcat 파일 Upload 사이즈 조정 $vi webapps/manager/WEB-INF/web.xml 를 확인하면 아래와 같은 옵션이 있다. 아래 부분을 업로드할 사이즈에 맞게 조정하면 된다. 52428800 52428800 0 2018. 5. 8.
Vertical Animation 방법 1. transition 사용법 #TICKER {display:none;}@media (min-width: 600px) {#TICKER {bottom: 32px;left: 32px;margin-left: 0;right: 32px;top: 32px !important;width: auto;position: fixed;display:block;}#TICKER_LAYOUT {box-sizing: border-box;width: 300px;max-height: 0px;right:0px; bottom: 0px;position: absolute;overflow: hidden;background-color:red;-webkit-transition: 3s;-moz-transition: 3s;-ms-transition:.. 2018. 5. 2.
Run configuration 에서 이름 중복이라고 뜨는데 프로젝트 삭제후에 Run configuration 에서 이름 중복이라고 뜨는데 보이지 않을때.. /.metadata/.plugins/org.eclipse.debug.core/.launches 해당 위치에서 이름에 해당하는 파일을 삭제하면 됩니다. 2018. 4. 29.
Android Studio SVN ignore (1) Enable VCS integration (under the VCS)(2) Settings -> Version Control -> Ignored Files (add the files, folders in your .gitignore file here) - It should be like below image. After this you can see the ignored files in separate color(like yellow) and other files that need to add to subversion in another color(red)https://www.gitignore.io/ 사이트에 접속하면 해당 gitignore 파일을 생성할수 있다. project 하단의 .gitig.. 2018. 4. 26.
Linux default Group 설정 #setfacl -R -m default:group:그룹명:wrx=> 디렉토리에서 선언하면 됨 2018. 4. 25.
mysql 환경 변수 가. 대소문자 구별하지 않기lower_case_table_names = 1 로 설정 2018. 4. 24.
Maven Deploy 만들기 1. pom.xml ( manager id가 존재하여야 한다 ) org.apache.maven.pluginsmaven-war-pluginfalseorg.apache.tomcat.maventomcat7-maven-plugin2.2http://[upload url]/manager/text/userpasswd 2. maven > update project 를 수행한다. 3. run configuration 에서 아래 순서로 항목을 생성한다.New 를 사용하여 생성한다.해당 빨간색 박스처럼 수정한다.- tomcat7:deploy- maven.test.skip : true maven deploy 는 out of memory 가 많이 발생한다. 시스템이 죽는 경우도 있다. 아래와 같이 설정하는 것이 좋다.expor.. 2018. 4. 24.
Timezone 변경 가. /etc/sysconfig/clock 수정Zone="Asia/Seoul" 나. /etc/localtime 변경# cp -p /usr/share/zoneinfo/Asia/Seoul /etc/localtime 2018. 4. 24.
JK_MOD 설치 1. apache 설치./configure --prefix=/home/findsemusa/apps/apache --htmldir=/home/findsemusa/docs --mandir=/home/findsemusa/apps/apache/htdocs/manual --enable-deflate --libdir=/home/findsemusa/apps/lib --enable-module=ssl --with-ssl --enable-ssl=shared 2. jk 설치http://apache.tt.co.kr/tomcat/tomcat-connectors/jk/tomcat-connectors-1.2.43-src.tar.gz 가. native 로 이동나. configure --with-apxs= 아파치홈/bin/apxs다.. 2018. 4. 24.