메뉴 건너뛰기

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>

번호 제목 글쓴이 날짜 조회 수
18 [PHP7.0]로그파일 위치 총관리자 2017.05.07 151
17 php auction 프로그램 총관리자 2017.05.14 94
16 webid에서 google처럼 검색할 수 있도록 하는 프로그램 총관리자 2017.05.16 46
15 Ubuntu 16.04 LTS에서 사이트에 무료인증서를 이용하여 SSL적용 file 총관리자 2017.05.23 354
14 Ubuntu 16.04LTS 설치후 초기에 주어야 하는 작업(php, apache, mariadb설치및 OS보안설정등) file 총관리자 2017.05.23 5273
13 [u-Auctions]목록이 1개만 나오는 문제 총관리자 2017.05.29 38
12 windows 혹은 mac에서 docker설치하기 위한 파일 총관리자 2017.10.13 42
11 컴퓨터 무한 재부팅 원인및 조치방법 file 총관리자 2017.12.05 106
10 여러 홈페이지를 운영하거나 혹은 서버에 가입한 사용자들에게 홈페이지 계정을 나누어 줄수 있도록 설정/계정 생성방법 총관리자 2018.01.23 282
9 https용 인증서 발급 명령문 예시및 오류 메세지 총관리자 2018.01.24 109
8 이미지 관리 오픈소스 목록 총관리자 2018.03.11 149
7 에러 추적(Error Tracking) 및 로그 취합(logging aggregation) 시스템인 Sentry 설치 총관리자 2018.03.14 88
6 자주쓰는 유용한 프로그램 총관리자 2018.03.16 1268
5 crypto관련 기생충 박멸 스크립트 총관리자 2018.05.11 1340
4 anaconda3(v5.4)를 이용하여 tensorflow설치후 ipython프로그램을 실행하여 import할때 오류발생시 조치 총관리자 2018.07.27 188
3 anaconda3 (v5.2) 설치및 머신러닝 관련 라이브러리 설치 절차 총관리자 2018.07.27 513
2 LAGOM 1.4 AND KUBERNETES ORCHESTRATION 총관리자 2019.07.19 78
1 [개발] 온라인 IDE - 개발 환경 구축 없어 어디서나 웹브라우저로 개발하기 총관리자 2022.05.02 207

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.

위로