메뉴 건너뛰기

Bigdata, Semantic IoT, Hadoop, NoSQL

Bigdata, Hadoop ecosystem, Semantic IoT등의 프로젝트를 진행중에 습득한 내용을 정리하는 곳입니다.
필요한 분을 위해서 공개하고 있습니다. 문의사항은 gooper@gooper.com로 메일을 보내주세요.


1. tomcat7 설치

sudo apt-get install tomcat7 tomcat7-admin하면 /usr/share/tomcat7에 설치됨

설치후에 http://localhost:8080/하면 It works !페이지가 보인다.

이때. 

tomcat home은 /usr/share/tomcat7 

tomcat 설정은 /etc/tomcat7

tomcat 로그는 /var/log/tomcat7

tomcat document root directory는 /var/lib/tomcat7/webapps에 있다.


* tomcat기동 : service tomcat7 start

* tomcat다운 : service tomcat7 stop 


* 설치중 오류발생시 systemctl status tomcat7.service를 실행하여 확인후 조치한다.

root@gsda1:/var/lib/dpkg/info# systemctl status tomcat7.service
[0m tomcat7.service - LSB: Start Tomcat.
   Loaded: loaded (/etc/init.d/tomcat7; bad; vendor preset: enabled)
   Active: failed (Result: exit-code) since Tue 2017-05-02 07:50:08 UTC; 51s ago
     Docs: man:systemd-sysv-generator(8)
  Process: 925 ExecStart=/etc/init.d/tomcat7 start (code=exited, status=1/FAILURE)

May 02 07:50:08 sda1 systemd[1]: Starting LSB: Start Tomcat....
May 02 07:50:08 sda1 tomcat7[925]:  * no JDK or JRE found - please set JAVA_HOME
May 02 07:50:08 sda1 systemd[1]: tomcat7.service: Control process exited, code=exited status=1
May 02 07:50:08 sda1 systemd[1]: Failed to start LSB: Start Tomcat..
May 02 07:50:08 sda1 systemd[1]: tomcat7.service: Unit entered failed state.
May 02 07:50:08 sda1 systemd[1]: tomcat7.service: Failed with result 'exit-code'.
root@gsda1:/var/lib/dpkg/info# service tomcat7 start
Job for tomcat7.service failed because the control process exited with error code. See "systemctl status tomcat7.service" and "journalctl -xe" for details.

* JAVA_HOME이 설정되어 있는데도 불구하고 위오아 같은 오류가 발생하면 http://zipeya.tistory.com/entry/ubuntu-1404-LTS%EC%97%90-tomcat7-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0 를 참조하여

vi /etc/default/tomcat7하여 기동스크립트의 JAVA_HOME값을 설정하여 준다.

그리고 sudo service tomcat7 start 로 tomcat을 재기동 해준다.



2. mod_jk 설치

sudo apt-get install libapache2-mod-jk로 설치하면 설치후 /etc/apache2/mods-available에 자동으로 들어감


3. workers.properties 설정

sudo vi /etc/libapache2-mod-jk/workers.properties 해서 아래의 색상이 있는 부분을 적절하게 수정한다.

-----------------------------------------------------------------------

# OPTIONS ( very important for jni mode ) 


#

# workers.tomcat_home should point to the location where you

# installed tomcat. This is where you have your conf, webapps and lib

# directories.

#

workers.tomcat_home=/usr/share/tomcat7


#

# workers.java_home should point to your Java installation. Normally

# you should have a bin and lib directories beneath it.

#

workers.java_home=/usr/lib/jvm/java-8-oracle

#

# You should configure your environment slash... ps= on NT and / on UNIX

# and maybe something different elsewhere.

#

ps=/

...

....

....

....

#

# The workers that your plugins should create and work with

worker.list=ajp13_worker

-----------------------------------------------------------------------------------------


4. tomcat의 server.xml파일 수정

sudo vi /var/lib/tomcat7/conf/server.xml

에서 아래 부분이 주석이 되어 있는데.. 주석을 풀어준다. 해당라인이 없으면 추가해준다.
<!-- Define an AJP 1.3 Connector on port 8009 -->
    <!--
    <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
    -->
============>
<!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />

5. JKMount설정
sudo vi /etc/apache2/mods-available/jk.conf을 열어서 </VirtualHost>바로 윗줄에 JKMount /* ajp13_worker를 추가한다.
--------------------------------------------------------
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

JKMount /* ajp13_worker
</VirtualHost>
-------------------------------------------------


apache관련 명령
hadoop@bigdata-host:/etc/apache2$ apachectl
Usage: /usr/sbin/apachectl start|stop|restart|graceful|graceful-stop|configtest|status|fullstatus|help
       /usr/sbin/apachectl <apache2 args>
       /usr/sbin/apachectl -h            (for help on <apache2 args>)

tomcat관련 명령
/usr/share/tomcat7/bin 에서 startup.sh과 shutdown.sh을 이용하면.. bug에 의한 오류가 발생하므로....service tomcat7 restart를 사용한다.

-------------------------------------------------------------------------------------------------------------------------------------------------
hadoop@bigdata-host:~/flume$ sudo service tomcat7 restart
 * Stopping Tomcat servlet engine tomcat7                                                                                 [ OK ] 
 * Starting Tomcat servlet engine tomcat7                                                                                 [ OK ] 
-------------------------------------------------------------------------------------------------------------------------------------------------

6. tomcat manager및 host-manager 화면 접근방법

  가. /etc/tomat7/tomcat-users.xml에서 주석으로 막혀있는 사용자및 패스워드 설정에 대한 주석을 제거하고

       manager화면접근을 위해서

         <role rolename="manager-gui"/>와   <user username="admin" password="admin" roles="manager-gui"/>를 추가하고

       host-manager에 접근하기 위해서

          <role rolename="admin-gui"/>와 <user username="admin" password="admin" roles="admin-gui"/>를 추가하고

      저장한다.

  나. service tomcat7 restart하여 반영하여 준다.

  다. http://localhost:8080/manager/html/로 접근하여 id및 패스워드를 입력한다.

------------------------/etc/tomcat7/tomcat-users.xml--------------------------

<tomcat-users>
<!--
  NOTE:  By default, no user is included in the "manager-gui" role required
  to operate the "/manager/html" web application.  If you wish to use this app,
  you must define such a user - the username and password are arbitrary.
-->
<!--
  NOTE:  The sample user and role entries below are wrapped in a comment
  and thus are ignored when reading this file. Do not forget to remove
  <!.. ..> that surrounds them.
-->
<!--  -->
  <role rolename="tomcat"/>
  <role rolename="role1"/>
  <role rolename="manager-gui"/>

  <role rolename="admin-gui"/>

  <user username="tomcat" password="tomcat" roles="tomcat"/>
  <user username="both" password="tomcat" roles="tomcat,role1"/>
  <user username="role1" password="tomcat" roles="role1"/>
  <user username="admin" password="admin" roles="manager-gui"/>

  <user username="admin" password="admin" roles="admin-gui"/>

<!---->
</tomcat-users>

번호 제목 글쓴이 날짜 조회 수
60 sqoop에서 oracle관련 작업할때 테이블명, 사용자명, DB명은 모두 대문자로 사용할것 총관리자 2014.05.15 1528
59 sqoop export/import등을 할때 driver를 못찾는 오류가 발생하면... 총관리자 2014.05.15 863
58 oozie가 말하는 start시간은..서버에서 확인되는 시간이 아닙니다. 총관리자 2014.05.14 699
» 우분투 16.04 LTS에 apache2와 tomcat7 연동하여 설치하기 총관리자 2014.05.09 1429
56 ping 안될때.. networking restart 날려주면 잘됨.. 총관리자 2014.05.09 2977
55 insert hbase by hive ... error occured after 5 hours..HMaster가 뜨지 않는 장애에 대한 복구 방법 총관리자 2014.04.29 7129
54 빅데이터 분석을 위한 샘플 빅데이터 파일 다운로드 사이트 총관리자 2014.04.28 3285
53 index생성, 삭제, 활용 총관리자 2014.04.25 1702
52 hbase shell에서 컬럼값 검색하기(SingleColumnValueFilter이용) 총관리자 2014.04.25 2446
51 unique한 값 생성 총관리자 2014.04.25 888
50 sequence한 번호 생성방법 총관리자 2014.04.25 1123
49 ubuntu 12.4에서 eclipse설치후 기동시 library(swt-gtk*)관련 오류 총관리자 2014.04.23 1261
48 Building a Cluster docs 총관리자 2014.04.22 1083
47 sqoop 1.4.4 설치및 테스트 총관리자 2014.04.21 3134
46 The disk drive for uuid= is not ready yet or not present 오류 해결방법 총관리자 2014.04.21 1265
45 os가 windows7인 host pc에서 ubuntu가 os인 guest pc에 접근하기 위한 네트워크설정 총관리자 2014.04.20 725
44 oozie에서 share lib설정시 action type별로 구분하여 넣을것 총관리자 2014.04.18 1195
43 json serde사용법 총관리자 2014.04.17 1140
42 json 값 다루기 총관리자 2014.04.17 1222
41 통계자료 구할수 있는 곳 총관리자 2014.04.16 1964

A personal place to organize information learned during the development of such Hadoop, Hive, Hbase, Semantic IoT, etc.
We are open to the required minutes. Please send inquiries to gooper@gooper.com.

위로