메뉴 건너뛰기

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>

번호 제목 글쓴이 날짜 조회 수
58 magento2 샘플데이타 설치 총관리자 2017.01.31 24
57 [vi] test.nq파일에서 특정문자열(예, <>)을 찾아서 포함되는 라인을 삭제한 동일한 이름의 파일을 만드는 방법 총관리자 2017.01.25 36
56 [u-Auctions]목록이 1개만 나오는 문제 총관리자 2017.05.29 38
55 eclipse 3.1 단축키 정리파일 총관리자 2017.01.02 38
54 magento2 설치후 초기화면이 깨지는 문제 file 총관리자 2017.01.31 42
53 windows 혹은 mac에서 docker설치하기 위한 파일 총관리자 2017.10.13 42
52 magento2 log파일 위치 총관리자 2017.01.31 45
51 webid에서 google처럼 검색할 수 있도록 하는 프로그램 총관리자 2017.05.16 46
50 "암은 평범한 병, 심호흡만 잘해도 암세포 분열 저지” 총관리자 2016.06.02 48
49 LAGOM 1.4 AND KUBERNETES ORCHESTRATION 총관리자 2019.07.19 78
48 에러 추적(Error Tracking) 및 로그 취합(logging aggregation) 시스템인 Sentry 설치 총관리자 2018.03.14 88
47 php auction 프로그램 총관리자 2017.05.14 94
46 컴퓨터 무한 재부팅 원인및 조치방법 file 총관리자 2017.12.05 106
45 https용 인증서 발급 명령문 예시및 오류 메세지 총관리자 2018.01.24 109
44 바나나 파이의 /tmp폴더를 외장하드로 변경하기 총관리자 2015.07.24 136
43 magento2 2.1.3을 수동으로 설치하는 방법 총관리자 2017.02.01 147
42 이미지 관리 오픈소스 목록 총관리자 2018.03.11 149
41 천문학적, 기후학적, 기상학적, 생물학적, 농사계절 구분 총관리자 2015.12.16 150
40 [PHP7.0]로그파일 위치 총관리자 2017.05.07 151
39 대표 오픈소스 라이선스, 한 눈에 보기! 총관리자 2015.12.10 168

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.

위로