tomcat native 연동


tomcat native 연동

1. jdk 설치 ( 절대! openjdk가 설치 되어있으면 안된다.) 2. tomcat 설치 (다운받아서 압축 해제) 3. native library 생성 3.1 빌드 3.1.1 압축해제 - # cd [tomcat 경로]/bin - # tar -zxvf tomcat-native[버전].tar.gz - cd tomcat-native-버전-src/jni/native 3.2 dependency package 설치 - # yum -y install openssl-devel apr-devel 3.3 Native Library Build - # ./configure --with-apr=/usr/bin --with-ssl=/usr/include/openssl - # make && make install 3.2 Native Library 시스템 등록 - # echo "/usr/local/apr/lib" > /etc/ld.so.conf.d/tomcat-native - # ldconfig - # l...


#IT·컴퓨터

원문링크 : tomcat native 연동