메뉴 건너뛰기

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>

번호 제목 글쓴이 날짜 조회 수
61 [Cloudera 6.3.4, Kudu]]Service Monitor에서 사용하는 metric중에 일부를 blacklist로 설정하여 모니터링 정보 수집 제외하는 방법 gooper 2022.07.08 31
60 Cloudera Manager의 Java Heap Size변경하는 방법 gooper 2022.06.27 31
59 federated query 예제 총관리자 2017.01.19 31
58 [vi]블럭 및 문서내 복사등에 관련된 명령어 총관리자 2017.02.17 30
57 [KTS Cluster의 Key Trustee Server]self-signed 인증서 발급및 설정 방법 gooper 2023.06.27 29
56 [oozie]oozie ssh action으로 패스워드 없이 다른 서버에 ssh로그인 하여 shellscript호출하는 설정하는 방법 gooper 2022.11.10 29
55 [CDP7.1.7]Impala Query의 Memory Spilled 양은 ScratchFileUsedBytes값을 누적해서 구할 수 있다. gooper 2022.07.29 29
54 Could not authenticate, GSSException: No valid credentials provided (Mechanism level: Failed to find any kerberos tgt) 총관리자 2022.04.28 27
53 Oracle RAC 구성된 DB서버에 대한 컴포넌트별 설정 방법 총관리자 2022.02.12 27
52 Error: IO_ERROR : java.io.IOException: Error while connecting Oozie server 총관리자 2022.05.02 26
51 kudu table와 impala(hive) table정보가 틀어져서 테이블을 읽지 못하는 경우(Error Loading Metadata) 조치방법 gooper 2023.11.10 25
50 클러스터내의 전체 workflow및 coordinator현황을 사용자별로 추출하는 방법 총관리자 2021.11.25 25
49 [Ranger]RangerAdminRESTClient Error gertting pplicies; Received NULL response!!, secureMode=true, user=rangerkms/node01.gooper.com@ GOOPER.COM (auth:KERBEROS), serviceName=cm_kms gooper 2023.06.27 24
48 oracle 접속 방식에 따른 --connect 지정 방법 총관리자 2022.02.11 24
47 hadoop에서 yarn jar ..를 이용하여 appliction을 실행하여 정상적으로 수행되었으나 yarn UI의 어플리케이션 목록에 나타나지 않는 문제 총관리자 2017.05.02 24
46 magento2 샘플데이타 설치 총관리자 2017.01.31 24
45 [Solr in Cloudera]Solr Data Directory변경 방법/절차 gooper 2023.04.21 23
44 vuestorefrontui.io를 이용한 front end project 생성하기 총관리자 2022.02.06 23
43 not leader of this config: current role FOLLOWER 오류 발생시 확인방법 총관리자 2022.01.17 23
42 [impala]insert into db명.table명 select a, b from db명.table명 쿼리 수행시 "Memory limit exceeded: Failed to allocate memory for Parquet page index"오류 조치 방법 gooper 2023.05.31 22

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.

위로